Try this.
echo ("</TR>");
for ($i = 0; $i < $num_fields; $i++) {
echo("<TD>" . $row_result[$i] . "</TD>");
}
echo ("</TR>");
where $row_result stores the fetched row.
Hope this helps!
Robert Yang
Josh wrote:
I would like to list out all entrys in a table. I think it would look like:
for($count = 0; $count < ??; $count++) {
print("$entry1, etc..");
}
I'm not sure though. Help!