Is there a way to display a table in HTML? I know in MySQL you can type DESCRIBE tablename and it'll show up. Is there a way to do it so it displays in HTML? Something maybe like:
$desctable = mysql_query("DESCRIBE tablename");
echo $desctable;
I've tried it but it didn't give me any output? Is it possible to do that?