Hi, I want to redirect into the next page after clicking the submit button. then please tell me the php code for that . thanks....
Assuming a very simple PHP script, I assume you want either: <form action="nextpage.php" ... Code (markup): OR <?php if (isset($_POST)) { // process form data // then redirect: header('Location: nextpage.php'); exit; } ?> PHP: