I need some help with posting information from a database to a page. So pretty much what i am doing is i have a html page where you enter information into, kinda like a information entry page and then a seperate page which then display's the infomation which is sent to the database from the other page. At the moment i have no problem with the infomation being echoed out but the thing is it only prints the last entry nothing else. How do i get it to post all the infomation sent to the database on the page the displays the infomation. At the moment im using:
"SELECT * FROM table1 ORDER BY date_auto";
this seems to be the correct thing to do but why is it only posting the last entry sent to database, when i run the above code in a mysql terminal it prints all the entries so why is the page not displaying all the entires?
Can someone help?