In some languages (ColdFusion comes to mind), you can run a query on the result set from a previous query. Is it possible to do something like that in php (with MySQL as the dat
Well, you may want to do this without touching the db:
while($t = mysql_fetch_array($rs1)){ if($t[name] == 'trout'){ echo 'This is the one we\'re looking for!'; break; } }