Proste:
header('Refresh: 0'); // 0 = seconds
Nawet możesz określić nową lokalizację
header("Refresh:2; url=new_page.php");
Ale podczas pracy z header
funkcja nie powinno być echa przed wywołaniem, ale jeśli już coś powtórzyłeś, możesz użyć html lub javascript:
HTML
<meta http-equiv="refresh" content="0">
<!--here you can also specify new url location-->
<meta http-equiv="refresh" content="0; url=http://url.com/">
JS
window.location.reload();
Aktualizacja: ponieważ nie możesz użyć header
zrób to:
if ($stmt9)
{
$message = "User updated Sussesfully!";
echo '<meta http-equiv="refresh" content="0">';
}
else
{
echo '<meta http-equiv="refresh" content="0">';
}