|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - Turning Off Warning Messages during PHP Execution
By: FYIcenter.com
(Continued from previous topic...)
How To Turn Off Warning Messages during PHP Execution?
If don't want see warning messages generated from the PHP engine
when executing PHP scripts, you can change the error_reporting setting
in the php.ini configuration file.
Open php.ini and change the following lines:
;error_reporting = E_ALL & ~E_NOTICE
error_reporting = E_ALL & ~E_WARNING
Now run the script in the previous tutorial again, you will not see
the warning messages from the PHP engine:
Execution failed:
State: S0002
Error: [Microsoft][ODBC SQL Server Driver][SQL Server]
Cannot drop the table 'fyi.center', because it does not
exist or you do not have permission.
(Continued on next topic...)
- What Are the Requirements to Use ODBC Connections in PHP Scripts?
- What Are Commonly Used ODBC Functions in PHP?
- How To Test ODBC DSN Connection Settings?
- How To Connect to a SQL Server using odbc_connect()?
- How To List All DSN Entries on Your Local Machine using odbc_data_source()?
- How To Execute a SQL Statement using odbc_exec()?
- How To Retrieve Error Messages using odbc_errormsg()?
- How To Turn Off Warning Messages during PHP Execution?
- How To Receive Returning Result from a Query?
- How To Loop through Result Set Objects using odbc_fetch_row()?
- How To Retrieve Field Values using odbc_result()?
- How To List All Tables in the Database using odbc_tables()?
- How To List All Columns in a Table using odbc_columns()?
- How To Create Prepared Statements using odbc_prepare()?
|