THis is my sql query which works fine..
<?php
$result = mysql_query ("select * from results_data where group_id = $latest_group_id and comp_run_id = $comp_run_id order by list_order");
while ($row = mysql_fetch_array($result))
{
?>
Now the tables has a id..... the id comes from another table... well should i say the id matches a id on another table.. what i want to do each time it loops is to get the id match it off the other table and display the details from this other table....
any ideas how to do this?