Forum Moderators: coopster
Your code will look something like this at the moment:
$sql = "this is where your sql statement is";
$rs = mysql_query($sql) or die(mysql_error());
Make it read:
$sql = "this is where your sql statement is";
echo $sql;
$rs = mysql_query($sql) or die(mysql_error());
and post what gets sent to the screen.
Cheers,
Steerpike