************The Scenario************
I have a form that updates a database
<form action="<? PHP_SELF ?>" method="post">
<input type="text" name="title" size="40" maxlength="75">
<input type="text" name="sub_title" size="40" maxlength="75">
<input type="text" name="body" size="40" maxlength="75">
<input type="submit">
</form>
after the form is submited the user can add another entry.
variables created via form post
$title
$sub_title
$body
*******************The Problem*********
If the user refreshes the browser, via REFRESH the database is updated with the same information from the former posting. So what I need is a way to reset the variables to a NULL value.
****************The Question***************
So how can I set the variables to NULL value or !isset, after the user submits the form to the database?
Thanks