Sorry to write this again, but i wanted to clarify what my question is...I want to retrieve an array with 3 (or multi) dimensions... However, my code only fetches all except for one....could some help w/ my code or a sample i can take a look at...thank you
<?php
connect to database....
$result = mysql_query("SELECT text FROM reqs WHERE listID=\"$ID%\"");
if ($row = mysql_fetch_array($result)) {
print ("<tr><td>Requirements to Enroll </td>");
print ("<td>
");
while($row = mysql_fetch_object($result)){
print ("
");
echo $row->text;
}
print ("
</td></tr>");
?>