Currently that could yield 144 results, which looks amateurish!
If I want to paginate the results so there aren't two many.
My thoughts
Option 1) $_REQUEST variables containing the original query and pagination variables...
Do the query
Work out how many rows
Work out how many pages
Check what page no from
Code: Select all
$_REQUEST['pageno']Create Page no links
Output current page of results
Option 2) use Session variables to do the same
Option 3) ????
What is the best way to do it?