Depending on the version of mysql, you might be able to get away with doing it all in one query.
Regardless, here's a decent way to do it, using 2 queries that will work on nearly any version of MySQL:
$result = '1,2,3';//in reality, you're going to get this through a query instead, not assigning it by hand.
$newQuery = 'SELECT * FROM table2 WHERE somevalue IN ('.$result.')';
You could also explode it as mentioned above, and individually deal with the records in a loop.
E.g.
$result = '1,2,3';//in reality, you're going to get this through a query instead, not assigning it by hand.
$resultArray = explode(',',$result);
for($i=0;$i<sizeof($resultArray);$i++) {
$newQuery = 'SELECT * FROM table2 WHERE somevalue = '.$resultArray[$i];
}