Guess I'm really stepping out of my programming bounds today folks.
I have my form with my text boxes. I make my changes and click on the submit button to update the recordset. Now....here's the catch.....
I am entering the page from another page with two variables set
edit.php?var1=test&var2=test1
so....after my update and the page refreshes, I still want the page to load with the same values to get the same record.
I have tried various combinations of the following. The page never reloads except that it just redisplays the data prior to the change. If I leave the page and go back in, then it has the updated data. Here's what I have tried:
<form action="edit.php?var1=<?php echo $tst ?>&var2=<?php echo $tst1 ?>"
also
<form action="<?php echo $_SERVER['PHP_SELF'] ?>?var1=<?php echo $tst ?>&var2=<?php echo $tst1 ?>"
even redirected to a newpage all together and then tried to come back....nothing.
any thoughts? did i confuse everyone?