Forum Moderators: coopster
why don't you use a header() command after the update has been successful?
// do SQL update query
// check that the update was a success
if (mysql_affected_rows() > 0)
{
// reload page
header("Location: " . $_SERVER['PHP_SELF']);
}
this will simply reload the page you are on.
does that help?