Forum Moderators: coopster
[web-wise-wizard.com...]
Here's how you do it from within PHP (but in reality this is javascript!)
Assuming that you have variable $success (TRUE on success) that holds whether the information was updated successfully.
if ($success) {
echo "<script>alert('Information updated')</script>";
echo "<script>navigate('other.php')</script>";
exit();
} else {
//....failed to update info
}
Will not work if your visitor's browser have javascript disabled.
- John Erazo