Dumb question: How do I query results from a MySQL that I've already queried once before in the same page?
Here is my code: // querying the database for the first time. $query = "select * from table where thingA = $searchA"; $result = mysql_query ($query); // now I want to query my results I just made. ...any ideas? THANKS!!!!!!!!!