Let's say I have a table like so called "forum"
code:--------------------------------------------------------------------------------
NAME: EMAIL:
Test test@test.com
How would I output from the bottom up? If I wanted the output on the page to be:
Name: Test2 Email: test2@test2.com
Name: Test Email: test@test.com
<?php
REVERSE ORDER OF TABLE SOMEHOW
while (*SOMETHING MEANING "MORE ROWS TO BE READ"*){
echo "Name: $name <br>E-mail Address: $email <br><hr>";
//I want this to output the data from current row somehow
}
?>