hey, I have a table in a database, which I want to be able to display. Basically I want the exact same thing to appear on the screen (in table format) how would I go about doing this?
Hi,
One option is to use html and display the table column values in table format.
Cheers
You must use html code like this: ...(after db connection) echo "<table>\n"; while(list($var1,$var2..)=mysql_fetch_row($result) { echo "<tr><td>$var1</td><td>$var2</td><td>...</td></tr>\n"; } echo "</table>";
Bye