link a button to a php page code example
Example 1: link input button in php
<input type=button onClick="parent.location='index.html'" value='click here'>
Example 2: php button to another page
<?php
if(isset($_POST['submit'])){
header("Location: http://www.example.com/page.php");
exit;
}