I am trying to make an admin control panel, and I am trying to do it so it prints all of the info, row by row. I am a n00b when it comes to php, and I got some help from a friend, and what I have so far is this:
$prepmaxid = mysql_query("SELECT id FROM havokban_site WHERE max(id)");
$maxid = mysql_result($prepmaxid,"maxid");
print("<TABLE border=0>");
while($id < $maxid) {
$querystring = mysql_query("SELECT id ,fname, lname, email, sadrs, city, state, zip, phone, price, item, size FROM havokban_site WHERE id = '$id'");
$datarow = mysql_fetch_array($querystring);