I am very new to php and I have information in my database that I want to display and I just cannot get it to display. Any help would be appreciated.
here is the sql statement I am running..
("SELECT `ID` , `First_Name` , `Last_Name` , `Mnth_pts` FROM `members` WHERE 1 ORDER BY `Mnth_pts` DESC LIMIT 0 , 30
I then want to take the results of that query and display them on the page. It should look like so..
ID First Name Last Name Pts
X John Doe 555
Y Jane Doe 544
Z Jim Doe 300
and so on for whatever number of people are returned.
Thanks for your help on this.
here is the sql statement I am running..
("SELECT `ID` , `First_Name` , `Last_Name` , `Mnth_pts` FROM `members` WHERE 1 ORDER BY `Mnth_pts` DESC LIMIT 0 , 30
I then want to take the results of that query and display them on the page. It should look like so..
ID First Name Last Name Pts
X John Doe 555
Y Jane Doe 544
Z Jim Doe 300
and so on for whatever number of people are returned.
Thanks for your help on this.