Registering variables with a session

Enter first variable (your favourite meal):
Enter second variable (your favourite movie):

You can access these variables from another page.

PHP code

In header of the file you start a session:
<?php
session_start();
?>
In body you register variables:
<?php
session_register( "meal" );
session_register( "movie" );
?>


Back to main page