Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6100599
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:24:19+00:00 2026-05-23T13:24:19+00:00

I was wondering why you would suppress a PHP error. I obviously see the

  • 0

I was wondering why you would “suppress” a PHP error. I obviously see the difference in the extra warning line that the error produces, but is it good to suppress it?

 Access denied for user 'user'@'localhost' (using password: YES) 

vs

Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'user'@'localhost'       (using password: YES) in (deleted) on line 8
Access denied for user 'user'@'localhost' (using password: YES)

If so, should I get into the habit of typing @ at the start of my MySQL queries in my PHP programs?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T13:24:19+00:00Added an answer on May 23, 2026 at 1:24 pm

    You should positively NOT get into the habit of suppressing errors. The errors are there for a reason. Instead, handle them properly and defensively in your code, and keep refining your code until the errors are gone.

    You should do things like:

    $conn = mysql_connect($host, $user, $pass);
    
    // Always test to see if your action/connection/whatever was successful
    if (!$conn) {
      // something went wrong.  handle the error
      // Display a message for the user, write a message to `error_log()`, whatever's appropriate
    }
    else mysql_select_db($dbname);
    

    On a production system, you should never display errors, since it risks giving up details of your code and database. Instead, turn display_errors off in php.ini, or at runtime:

    // In development and production, make sure all errors are reported
    error_reporting(E_ALL & E_STRICT);
    
    // In development show all errors on screen so you handle them as they occur
    ini_set('display_errors', 1);
    
    // In production turn them off
    ini_set('display_errors', 0);
    

    In fact, error suppression with @ is the second most voted for PHP bad practice in this classic question.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have run a few using batch jobs, but, I am wondering what would
I'm wondering what would be considered best practise for this. It's fairly inconsequential but
I would like to suppress a particular warning issued by gcc caused by returning
I was wondering would would be a good way to build a dynamic site,
I am wondering would this make any real efficieny difference (ie computation time, memory
I've been wondering why would I use Exceptions in my PHP. Let's take a
I was wondering what would be a good UI to specify test cases. Currently
There is an infrequent error that I see in my serverlogs which is hard
So I was wondering how would I make it so that I can select
Wondering what would be a good method to get the first iteration on a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.