Hello,

I have a problem with php sessions. The following code works on my home PC
but doesn't work on my office PC. What can be the problem?

Thanks!


I have 2 files:
file1.php:
session_stert();
$_SESSION['demo']="test";

and file2.php
session_start();
echo $_SESSION['demo'];

I use PHP 4.3.2.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to