View Single Post
  #2 (permalink)  
Old 12-11-03, 10:39 AM
mdhall's Avatar
mdhall mdhall is offline
Aspiring Coder
 
Join Date: Oct 2003
Posts: 510
Thanks: 1
Thanked 1 Time in 1 Post
Try removong the // from your query....

//$result = mysql_query($sql,$db) or die (mysql_error());

to this

$result = mysql_query($sql,$db) or die (mysql_error());

"//" makes the line a comment, i believe, so it may be blocking the results from actually being processed.
Reply With Quote