'; // Print the column headers echo ''; while ($meta = mysql_fetch_field($result)) { echo ''.$meta->name.'('.$meta->type.')'; } // Print the rows while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) { echo ''; foreach($row as $x) { echo ''.$x.''; } echo ''; } echo ''; ?>