Jump to content

Quick question about sessions.


pinacoladaxb

Recommended Posts

I can't get sessions to work. I made a small example on my site:

http://www.atomicriot.com/test/test1.php

 

Code for test1.php:

<?php
session_start();
$_SESSION['test'] = 23;
echo "Establishing session...<br />";
if ($_SESSION['test'] == 23) echo "Session created. The value 23 was stored in the variable "test".";
else echo "Session was not created.";
echo "<p><a href=\"../test/test2.php\">Click Here</p>";
?>

 

Code for test2.php:

<?php
if(isset($_SESSION['test'])) echo $_SESSION['test'];
else echo "The variable "test" was not set.";
?>

 

Am I missing something? Please help.

Link to comment
https://forums.phpfreaks.com/topic/124234-quick-question-about-sessions/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.