?you
, чтобы после обновления URL страницы выглядел так: http://test.ru/index.php?you
. <form method="POST" >
<input type="submit" name="start" value="start" >
</form>
<?php
if(isset($_POST['start'])) {
header('Location: http://test.ru/index.php?you') ;
}
?>
<?php
if(isset($_POST['start'])) {
header('Location: http://test.ru/index.php?you') ;
}
?>
<form method="POST" >
<input type="submit" name="start" value="start" >
</form>
Location
не выводятся, если был какой-то вывод в тело ответа. (Или использовать буферизацию: см. ob_start()
и иже с ней.)