I have an html form which passes information via POST to a php script. The php script runs a copy simple querys against a mysql database. If the number of records returned from the query is greater then 25, then a button to show the next set of 25 is placed on the page via "$php_self?page=2". The problem is when the next buttonis pushed, I get an error about empty query.
I believe the problem is the "POST" data is not be moved from the first page into the second page.
How can I debug this and what is a good solution to this problem without having to use "GET"
Thanks