Displaying Results In A Table?
Posted: Thu Mar 12, 2009 2:50 pm
Hello, I have the code below, and wanted to know how I can display the information in a table format?
Code: Select all
$sql = "SELECT * FROM ID_Table WHERE Job_ID IN (SELECT Job_ID FROM Job_ID WHERE Job_ID ='1')";
$result = mysql_query($sql);
for($i = 0; $array[$i] = mysql_fetch_assoc($result); $i++);
print_r($array);