I have query nested inside two queries. (I know, horribly inefficient)
$Quest = "SELECT * FROM `$System` WHERE TechNum = '$TechNum' && WorkDate = '$IncDate'"; $SelectSystemResult = mysql_query($Quest, $cxn)
or ??????
If there is no table corresponding to $System, I want the script to jump back to the first Select statement and move onto the next row. I sure don't want to use a goto statement.