what am i missing...i've done this many times before...but this just won't work...are there some other backend things i should inspect?
i receive NO error messages...everything is fine except it returns no results...very weird...jv
code:
the connection IS correct...checked and rechecked...i even changed them to the wrong info so i could see the password for a bit...
$query = mysql_query ("SELECT * FROM records WHERE id='$id' " ) or die ("Unexpected error for MySQL database [3b]");
$row = mysql_fetch_array($query);
$query_comm = mysql_query("SELECT * FROM comments WHERE commid = $row[id]" ) or die ("Unexpected error");
$row_comm = mysql_fetch_array($query_comm);
calling up results using...
<? $row['rtitle']; ?>
<? $row_comm['rtitle']; ?>