I am using a script that executes a select query, passes the results into an array where a regexp is run, and inserts them one at a time into another table..
I have to limit the select query to 10 rows due to the timeout constraints of the server.
I would like to be able to automate the re-request process which would allow for a larger select statement (since I can't increase the server timeout max)
Is it possible to use the parse_url function or some other method to re-request the current URL from within PHP? (and loop it for a predetermined increment)
This would be like an automatic page refresh which is sometimes done with Javascript.