I have a page1.php which is a form and i want to be able to go to page2.php when i click submit in page1.php.?
How do i do that ...my page1.php is a self processing form.
this is what i have now...
<form action="<?php echo $_SERVER?>" method="post"> - this is sending data to the database but not the one below
I tried the one as below as well but no use.
<form action="page2.php" method="post">
but not working...