A
Anonymous
Guest
I attempted the same tutorial as "harmon808" with some success:
Page 1
page 2
This code creates a session variable in the /tmp folder and the code is executed accordingly.
Problem:
How do I allow the user to specify what the value of the variable "name" is?
Page 1
Code:
<?php
session_start();
$_SESSION['name'] = 'Jester';
?>
page 2
Code:
<?php
session_start();
echo 'Hello '.$_SESSION['name'];
?>
This code creates a session variable in the /tmp folder and the code is executed accordingly.
Problem:
How do I allow the user to specify what the value of the variable "name" is?