Rochtus Posted July 22, 2009 Share Posted July 22, 2009 I use the following script. <form name="pagina1" action="" method="post"> <a href="index.php" onclick="document.pagina1.submit();return false"> But what i need is the script to first submit the form: pagina1 and after that go to index.php How do i have to do this? Quote Link to comment Share on other sites More sharing options...
dzelenika Posted July 22, 2009 Share Posted July 22, 2009 After form submitting you are not on current page, so you can't go to other page. There are two solutions 1 use ajax 2 after form submit, on page which handles form, do redirection (function header()) to index.php Quote Link to comment Share on other sites More sharing options...
Enormity Posted July 23, 2009 Share Posted July 23, 2009 Are you trying to get this form to submit itself to index.php? Or do you mean you just need to be redirected back to the index page once the script you are sending the form information to runs? Quote Link to comment Share on other sites More sharing options...
napsternapster Posted July 24, 2009 Share Posted July 24, 2009 I'm struggling with the same problem too but my aim is to submit the form Quote Link to comment Share on other sites More sharing options...
rhodesa Posted July 24, 2009 Share Posted July 24, 2009 if you are looking to redirect to a different page immediately after, just do a normal form submit, and have the script that is processing forward the user after with: header('Location: index.php'); exit; ...as stated by @dzelenika the only case i can see the need for ajax is if you needed to submit multiple forms or you didn't want to navigate away from the current page Quote Link to comment Share on other sites More sharing options...
napsternapster Posted July 24, 2009 Share Posted July 24, 2009 From is not to redirect it but to call php after validating using ajax on form.submit(); or my <form ></form > attributes are not correct to submit the form after javascript /ajax validation for client and server side Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.