кнопка PHP на другую страницу
<?php
if(isset($_POST['submit'])){
header("Location: http://www.example.com/page.php");
exit;
}
Plain Peafowl
<?php
if(isset($_POST['submit'])){
header("Location: http://www.example.com/page.php");
exit;
}