Hi..guys!I have several pages which supposed to execute in sequential order,reserve.php,reserve2.php,reserve3.php,...How could I resolve them in same address as reserve.php and execute in proper order?Thanks...
It sounds like you want to [man]include/man the scripts.
Let said I have a button in first page to link to later pages
<input name="continue" type="button" id="continue4" value="Continue" onclick="window.location='reserve2.php'">
how can I use include() at here?
No, but now your problem becomes a variation of a pagination problem. If you are on page 1, then the next page is 2. That is rather easy.
I need all the pages to be executed in proper order.User should go through page by page and can't intercept in between them.Maybe I will try do it with session