Jump to content

how to start session?


poqoz-87

Recommended Posts

i m learning how to have session in my form.

like for example, after the user insert their information in the application form, they will then be redirected to another page. the another page is where they will have to print out their form - with their info added in.

 

but i m unsure how to go about doing it. can someone show me?

Link to comment
Share on other sites

It would look something like this:

 

 

<?php

$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];

//register the sessions
$_SESSION['first_name'] = $first_name;
$_SESSION['last_name'] = $last_name;

?>

<form method="POST" action="<?php echo $_SERVER['PHP_SELF']; ?>">
   First Name: <input type="text" name="first_name"><br>
   Last Name: <input type="text" name="last_name"><br>
</form>

 

This code is not tested and does not error check the inputs. It is just to show you basically how to do it.

Now that the form inputs are sessions, you can echo them out wherever you  want.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.