I know how to catch an action from someone entering page.php and then set a default to page=1 and have the action for page=1 to load page=2, but how should I make page.php to catch 1,2,3,4,5,infinity so it keeps loading until the user closes the browser?
reloading can be done using
header("Location: page.php?page=n");
(where n = number)
catching empty action can be done like this
if (!isset($action) or $action=="") {
$action="page1";
}
catching page =1 can be done like this
if ($action=="page1") {
header("Location: page.php?page=2");
}
etc.