सरल:
header('Refresh: 0'); // 0 = seconds
यहां तक कि आप नया स्थान भी निर्दिष्ट कर सकते हैं
header("Refresh:2; url=new_page.php");
लेकिन header
. के साथ काम करते समय फ़ंक्शन को कॉल करने से पहले कुछ भी प्रतिध्वनित नहीं होना चाहिए, लेकिन यदि आप पहले से ही कुछ भी गूँज चुके हैं, तो आप 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/">
जेएस
window.location.reload();
अपडेट करें: क्योंकि आप header
. का उपयोग नहीं कर सकते यह करें:
if ($stmt9)
{
$message = "User updated Sussesfully!";
echo '<meta http-equiv="refresh" content="0">';
}
else
{
echo '<meta http-equiv="refresh" content="0">';
}