gladiator83x Posted July 25, 2006 Share Posted July 25, 2006 Hi All,I was just wondering if someone could assist me in outputting one of my Mysql tables as an Html table.I believe that I have to use one of the SHOW TABLE commands that mysql offers.I was thinking:$query="SHOW TABLE_NAME";$result="mysql_query($query)";Any suggestions? Link to comment https://forums.phpfreaks.com/topic/15559-outputting-and-entire-mysql-table-as-an-html-table/ Share on other sites More sharing options...
manichean Posted July 25, 2006 Share Posted July 25, 2006 Hello gladiator83x,Have a look herehttp://www.biorust.com/tutorials/detail/221/en/cheers Link to comment https://forums.phpfreaks.com/topic/15559-outputting-and-entire-mysql-table-as-an-html-table/#findComment-63269 Share on other sites More sharing options...
Barand Posted July 25, 2006 Share Posted July 25, 2006 try this[code]<?php$result = mysql_query("SELECT * FROM tablename");echo "<TABLE border='1' cellpadding='4'>\n";// column headings echo "<tr>\n"; while ($fld = mysql_fetch_field ($result)) { echo "<th>{$fld->name}</th>\n"; } echo "</tr>\n"; // list data while ($row = mysql_fetch_row($result)) { echo "<tr>\n"; foreach ($row as $field) { echo "<td>$field</td>\n"; } echo "</tr>\n";}echo "</TABLE>\n";?>[/code] Link to comment https://forums.phpfreaks.com/topic/15559-outputting-and-entire-mysql-table-as-an-html-table/#findComment-63294 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.