se.nsuo.us
01-12-2006, 04:17 AM
At several places in image_edit.php I see the following statement $result = mysql_query($query) ||("Error: ".mysql_error());
Since there are very few chances of SQL errors happening, no one noticed till now - the statement to be really meaningful should be $result = mysql_query($query) || die ("Error: ".mysql_error());
I suspect this must be true for several other files as well ;)
Since there are very few chances of SQL errors happening, no one noticed till now - the statement to be really meaningful should be $result = mysql_query($query) || die ("Error: ".mysql_error());
I suspect this must be true for several other files as well ;)