Posted by flamer die.spam@hotmail.com on 08/22/06 01:32
christopher.j.just@gmail.com wrote:
> I need to set the information being passed through the fields (23 of
> them) in the form into a session.
>
> Where do I start?
>
> Thanks,
> Chris
you want the submitted data from a form into a session?
//get the var out of the form
$var1 = $_POST["var1"];
//stick it into session
$_SESSION["var2"] = $var1;
Flamer.
Navigation:
[Reply to this message]
|