To start here's my query code which works fine for what I want it to do.
<?php
require('datas/connect.php');
$result = mysql_query("select * from ldu_hackers order by name");
while($r=mysql_fetch_array($result))
{
$name=$r["name"];
$level=$r["level"];
$char=$r["char"];
$server=$r["server"];
$desc=$r["desc"];
$id=$r["id"];
echo "$name | $level | $char | $server | $desc <br>";
}
?>
But instead of just echoing the info here, I was wondering can someone show me how to have an html table file or have this file grab the info from this query and display it in a table.