Maybe that would have made more sense with a little more punctuation. No offense, that was just hard to follow and posts that are hard to follow often go unanswered.
I think what you said is that you have a form, and when you hit the submit button, instead of seeing the new values that you just submitted, you see the previous values. The rest I will just have to assume...
If your form inputs are being set from the database, you will need to call the query that gets the values on page load after the code that updates the database.
To illustrate with a random example:
<?php
// first update table...
if ( isset($_POST['button']) ) {
$insert_sql = "UPDATE table SET your_text = '" . $_POST['your_text'] . "'";
// excute query
}
// now that table is updated, query new result...
$query_sql = "SELECT your_text FROM table";
$result = mysql_query($query_sql);
$row = mysql_fetch_array($result);
?>
<form action="<?php echo $_SERVER['PHP_SELF'] ?>">
<textarea name="your_text">
<?php echo $row['your_text'] ?>
</textarea>
<input type="submit" name="button">
</form>