Hi everyone!
Im working on a project that i need to implement a results table with pagination.
Currently i have it working with a $pos = 1 and a $pos++ But as soon as i change the page the rank starts at 1 again.
I have been reading up on it and there seems to be a way to have mysql assign rank in the query.
I'm failing to understand the logic.
Could someone please help?
SELECT * , members.Username, members.city, members.state FROM picks_test INNER JOIN members ON picks_test.user_id = members.user_id ORDER BY picks_test.round_total DESC LIMIT $start, $per_page
Thanks