I have a search function that returns 50 a page from a mysql db. If there are several pages, then you see each listed with 50 results, number 1-50. I use a simple loop for each result and the <ol><li> commands. But, the issue is, is that on page two, (since php is saying lets get the next 50 from row 51) then the li command starts at 1. So one page two, it says 1-50, instead of 51-100. Does anyone know how I can get something to properly count the result?
Would I use the value for mysql_rows? Would it work in the same type of loop?
Does that make sense?