I have a HTML form (not a PHP script) that displays the records in one of my tables. The table has about 50 records now, but at some point the number of records will be too much for one page to display.
I'd like to display about 25 records per page. I would also like to display links at the bottom of the page showing <1-25> <26-50>, etc.
I know I can use the LIMIT clause to return records in this fashion. But how would I approach this problem? Is there a way to call the same HTM page yet use a variable to determine which records to display?
Probably another newbie question. Sorry! 😉
You guys have been a great help in my project. I appreciate the help.