Hello,
Is it possible to take the values from <INPUT TYPE="TEXT" NAME="firstname" VALUE="XXXXXX"> and assign to an existing $_SESSION['xxxx']?
$_SESSION['firstname']=firstname.value;
Yup, of course - if you wanted to do it with all the variables in $POST for instance you could do
foreach($_POST as $key=>$value) { $_SESSION[$key]=$value; }
Unless I've interpreted what you wanted wrongly.
I can't use the $POST because in my situation there is a form by a third party that is access on the post of the form and the $POST is undefined on the form I need with it's associated variables.
Thanks.
Hi again.
I'm sorry, but I'm really confused by what you're saying about the third party. Does the form with the text input in it submit to the page you are doing your php in?