i have the following
Code: Select all
$q="SELECT height,girth FROM Th,Tg WHERE Th_id=Tg_id";Is is possible to have my resultset tell me which field failed ?
$r=mysql_query($q, $connection);
if (!$r): $msg="No Records because..."
Thanx
Moderator: General Moderators
Code: Select all
$q="SELECT height,girth FROM Th,Tg WHERE Th_id=Tg_id";