I have 2 pages, the firts one:
<?php
$user_email = "me@me.com";
setcookie("user_email", $user_email, time()+3600);
?>
And the second one:
<?php
print $user_email;
?>
Of course, this is the simplified version...but anyways, it does not work...the second page does not print the $user_email.
I have also tried it with session variables, and they are not printed.
Thanks.