Answers for "button click php navigate to another page"

PHP
3

php go to another page

<?php header("Location: anotherDirectory/anotherFile.php"); ?>
Posted by: Guest on April-14-2020
-1

php button to another page

<?php
if(isset($_POST['submit'])){
header("Location: http://www.example.com/page.php");
exit;
}
Posted by: Guest on March-15-2020

Code answers related to "button click php navigate to another page"

Browse Popular Code Answers by Language