what i am trying to do is get the results from the first query pass them into an array and then use them in a sub query. both queries work separately if i input the id's into the sub query manually. is there a way of linking these two queries?
i have used this code
$result = mysql_query("SELECT v2.video_id as v2id FROM VideoTags AS v1 JOIN VideoTags AS v2 USING ( tag_id ) WHERE v1.video_id =1 AND v1.video_id <> v2.video_id GROUP BY v2.video_id ORDER BY COUNT( * ) DESC");
$values = array();
while ($row = mysql_fetch_array( $result )) {
$values[] = $row['v2id'];
}
echo join(", ", $values);
$resultone = mysql_query("SELECT * FROM videos WHERE video_id IN (' . join(',', $values). ')");
while ($row = mysql_fetch_array( $resultone )) {
echo "name ".$row['video_name'];
}
Thanks for your help.
join()in the second query is inside the wrong speech marks, you are using single quotes to break out of double quotes. – Orbling Jun 7 '11 at 9:10