What I'm trying to accomplish is,
- Add A list of words as separate entries into a table.
- Display the words in a group of 25. So if there are 25 entries, 1-25 will be shown in a list. Also, if there are 27 entries, only number 26 and number 27 will show. So it is not always the last 25 entries into the table.
I already know how to insert and pull information from a database, but I do not know how to do the proper grouping to get them in groups of 25.
Edit: How would I increase the LIMIT automatically based on the number of rows in the table?
Edit #2: This question is not a duplicate. I do not want the most recent 25. I want them in groups of 25. My question was answered below.