I have a page named interschedule.php that displays an entire schedule.
I tried post, for some reason it displaying the same original page and the requested page (which is part of interschedule.php) at the bottom
here is the idea, when you click on predict it takes me to the right page. With post, I get the original page on top and also that requested page.
I got it. I had to change that line for the main page from
PHP Code:
if (empty($_GET['do']))
to
PHP Code:
if (empty($_POST['do']))
edit again. I made it
PHP Code:
if (empty($_REQUEST['do']))