Log in

View Full Version : Hide SQL errors from users


aggiefan
08-13-2006, 03:49 AM
I'm still working on porting my hack over and I'm stumped. I have a requirement that you have to answer everything or it will display a standard error with the standard error template. When it does this, however, it's giving me this error at the top:Warning: mysql_result() [function.mysql-result (http://www.aggiefans.com/forums/function.mysql-result)]: Unable to jump to row 0 on MySQL result index 14 in \vbcontest.php on line 256

Warning: mysql_result() [function.mysql-result (http://www.aggiefans.com/forums/function.mysql-result)]: Unable to jump to row 0 on MySQL result index 15 in \vbcontest.php on line 258

Warning: mysql_result() [function.mysql-result (http://www.aggiefans.com/forums/function.mysql-result)]: Unable to jump to row 0 on MySQL result index 16 in \vbcontest.php on line 260
Since I know the criteria isn't being passed to the queries in the php file on this standard error page, I don't want these errors showing up at the top of the file. How can I hide them or comment them out?

Thanks.

well, it's functional by turning error reporting off:

error_reporting(0);

But what's the code to have it all on except warnings? I'd like to still have it available in case something major comes along.

Paul M
08-13-2006, 03:43 PM
How about fixing the error ?

calorie
08-13-2006, 03:53 PM
// all but notices
error_reporting(E_ALL & ~E_NOTICE);

// all but warnings
error_reporting(E_ALL & ~E_WARNING);

// all but notices and warnings
error_reporting(E_ALL & ~(E_NOTICE | E_WARNING));

aggiefan
08-13-2006, 07:10 PM
How about fixing the error ?

Great answer man...but if you read the problem you might have known what's going on...


// all but notices
error_reporting(E_ALL & ~E_NOTICE);

// all but warnings
error_reporting(E_ALL & ~E_WARNING);

// all but notices and warnings
error_reporting(E_ALL & ~(E_NOTICE | E_WARNING));


Thanks Calorie!