Problem with POST...
Posted: Sat Jun 15, 2013 10:06 pm
Although the php variable displays on the page properly, it is not being picked up in the subsequent page with the _POST option.
Code from source page:
Code from target page:
Any suggestions?
Thanks.
Code from source page:
Code: Select all
<form name="frmFriendConf" action="filename.php" method="post" OnSubmit="return onFrndConf();">
<option value="<?= $v_frnd_id; ?>"></option><?= $v_frnd_id; ?>
<input type="submit" name="btnFriendConf" value="Confirm">
</form>
Code: Select all
$v_frnd_id_in = $_POST['v_frnd_id'];
Thanks.