Answers for "how to go onto another php page using button in html"

PHP
-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 "how to go onto another php page using button in html"

Browse Popular Code Answers by Language