did you examine the error code for the preceeding MYSQL statements in PHP:
mysql_errno() or
mysql_error()?
did you take advantage of the "or
die" construct in PHP to stop execution on error? commonly used as
Code:
$ResultSet = @mysql_query($strSQL,$Connection) or die (Echo "MySQL bailed out on me citing error number:".mysql_errno()."; apparently the feeble excuse offered is: ".mysql_error()."<BR>The SQL was:$strSQL);
did you set your
error_reporting level to something sensible for development purposes
are you certain you don't have a typo, that the in your MYSQL resource identifier
should this question be asked in the PHP section now we know you are using MySQL in PHP
there is no doubt that testing your SQL in either MySQL Query Browser of PHP Admin may make sense. If you have a local MySQL server use the MySQL Query browser (and whilst you are at it download the MySQL Adminsitrator), if you are using a remote MySQL db then you probably have to use PHPMyAdmin.. which is OK if a lot less helpfull than the Query Browser.