FlashNewby
March 11th, 2005, 06:34 PM
I have this code in a file called saveClientUtility.php:
<a href="retrieveClientUtility.php">Retrieve</a>
followed by
<input name="userRet" type="hidden" value="<?php echo ($user); ?>" />
My problem is when I click on the Retrieve link, the userRet value is not
getting passed in the request to retrieveClientUtility.php. I have viewed the source of saveClientUtility.php and the value for
userRet is showing up so I know that value is okay.
It's when I get to the retrieveClientUtility.php and do a $_POST['userRet'] that I don't see any value. I've also tried using $_REQUEST['userRet'], $_GET['userRet'] and these have no data as well.
Any help would be appreciated.
Thanks
<a href="retrieveClientUtility.php">Retrieve</a>
followed by
<input name="userRet" type="hidden" value="<?php echo ($user); ?>" />
My problem is when I click on the Retrieve link, the userRet value is not
getting passed in the request to retrieveClientUtility.php. I have viewed the source of saveClientUtility.php and the value for
userRet is showing up so I know that value is okay.
It's when I get to the retrieveClientUtility.php and do a $_POST['userRet'] that I don't see any value. I've also tried using $_REQUEST['userRet'], $_GET['userRet'] and these have no data as well.
Any help would be appreciated.
Thanks