hi,
try using the @ symbol as a prefix to the statement that u feel like may produce errors...
@statement;
this doesnt show the errors...also theres a provision in php.ini file am not too sure about it..which can hide errors...
regarding handling of errors is concerned,u cud get some help from this,
<?php
mysql_connect("marliesle");
echo mysql_errno().": ".mysql_error()."<BR>";
mysql_select_db("nonexistentdb");
echo mysql_errno().": ".mysql_error()."<BR>";
$conn = mysql_query("SELECT * FROM nonexistenttable");
echo mysql_errno().": ".mysql_error()."<BR>";
?>
this is from php manual....so just refer it..
regs,
sgb.