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:
Code:
Warning: mysql_result() [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]: Unable to jump to row 0 on MySQL result index 15 in \vbcontest.php on line 258
Warning: mysql_result() [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:
Code:
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.