I have three pages in all.
The first page contains the the link to pass the variable to the second page
AddEdit.php?mname=<?php $Test->Value('name') ?>
(This is displayed as .....mname=Bob)
The second page is the update page where you can change information. There is a submit button on that page. After making changes and clicking Submit, it goes to a confirmation page (update_confirm.php). This page displayes some information saying the the update was successfull.
Now I want it to go back to the AddEdit.php and be able to pull up that same record which is why I am trying pass the same value back (i.e. $sname='Bob').
It does do the redirect however the page comes up as empty. In the address line it has
{h}ttp://localhost/TestSite/AddEdit.php?mname=
when I thought it was supposed to have this:
{h}ttp://localhost/TestSite/AddEdit.php?mname=Bob
Hope this helps. Let me know if you need more info.