Jednoduché:
header('Refresh: 0'); // 0 = seconds
I vy můžete zadat nové umístění
header("Refresh:2; url=new_page.php");
Ale při práci s header
funkce by se před jejím voláním nemělo nic opakovat, ale pokud jste již něco opakovali, můžete použít html nebo 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();
Aktualizace: protože nemůžete použít header
udělejte toto:
if ($stmt9)
{
$message = "User updated Sussesfully!";
echo '<meta http-equiv="refresh" content="0">';
}
else
{
echo '<meta http-equiv="refresh" content="0">';
}