How do I display all the values in a table in order from top to bottom, one after the other?
So fahr It only does it with specific values:
$result = mysql_query("SELECT * FROM map");
$row = mysql_fetch_row($result);
echo $row["1"];
how do I siplify it to any values, just read them out?
So fahr It only does it with specific values:
$result = mysql_query("SELECT * FROM map");
$row = mysql_fetch_row($result);
echo $row["1"];
how do I siplify it to any values, just read them out?