php button to another page

Solutions on MaxInterview for php button to another page by the best coders in the world

showing results for - "php button to another page"
Ben
11 Jun 2018
1<?php
2if(isset($_POST['submit'])){
3header("Location: http://www.example.com/page.php");
4exit;
5}