i have two simple pages, test.php and test2.php
test.php contains:
<?php
session_start() ;
$_SESSION['test']="blah";
?>
and test2.php contains:
<?php
session_start() ;
print $_SESSION['test'];
?>
in the php.ini file, my session save path is set to /tmp. i dont even know
where to look for the tmp folder. also, when i go to test2.php after
accessing test.php, the page is blank and it doesnt print "blah".
as i mentioned in the title, im using windows xp (home edition) with PHP
4.3.4 and apache 1.3
thanks
JP
test.php contains:
<?php
session_start() ;
$_SESSION['test']="blah";
?>
and test2.php contains:
<?php
session_start() ;
print $_SESSION['test'];
?>
in the php.ini file, my session save path is set to /tmp. i dont even know
where to look for the tmp folder. also, when i go to test2.php after
accessing test.php, the page is blank and it doesnt print "blah".
as i mentioned in the title, im using windows xp (home edition) with PHP
4.3.4 and apache 1.3
thanks
JP
Comment