I have got a feature on my website called 'View friends' that displays a hidden div containing a users friends. The only problem so far is I would like it so that it would show 7 members on each row for 3 rows so a total of 21 members on each page. I know I will have to round up NumOfMembers/21 giving me the pages needed. I just need some advice in how I should set up the pagination from when thee SQL query gets the total amount of friends. Any ideas?
|
feedback
|
|
The SQL-query should use the
When handling the results, simply use the modulo operator for determining the lines and rows your current result has to be put in:
| |||
|
feedback
|
|
You have 2 options: First you can load everything from the php in one query and put all users in an array(content), and just display in pages!
you can use Jquery Pagination: https://github.com/gbirke/jquery_pagination#readme for that. Another approach is still using jquery pagination, but not load everything at once! then you must have same ajax call in the method 'handlePaginationClick' to pull all page information. | |||||||||
feedback
|