php help making mysql rows 10 entries per page

Status
Not open for further replies.

jcortes

Fully Optimized
Messages
1,909
hey i have a forum that i made and i would like to list the users however right now at the moment i have all the users on one VERY long page i was wondering if anyone knew how to make it so that it shows 10 entries per page then creates a new virtual page, meaning there is not really a new physical php page but it just goes to the next 10 selected from the mysql database
 
you could do it with select statements from the mySQL server...

SELECT * FROM users_table LIMIT 0,30 would show 30 records.
 
Status
Not open for further replies.
Back
Top Bottom