Hi,
ive just started working with PHP and mysql trying to learn it so i can have a database on my website.
ive got my php getting info from my database but i want to format it a bit to put it in tables, ive done alot of google searching and found lots of results but none of which work for me, also they dont explain what the code they provide is for.
i was hoping someone could show me or point me in the direction of a web site that will teach me how to display the following code in a 2x2 table.
while ($row = mysql_fetch_array($result)) {
echo '<p>' . $row['MonsterName'] . $row['Attack'] . '</p>';
}
Thanks in advance 🙂