Im running Windows 98, PHP 4.2.1, apache 1.3.26. (sessions enabled, no errors)
Problem: When going to another page, the session disapear ?
Im using same code on another (linux, php 4.1) server, and it works fine.
page 1
<?php
session_start();
session_register("test");
$test = "session tester";
?>
page 2
<?php
session_start();
echo $test;
?>
Why is it not working? (php4.2.1 != php4.1)?
How to solve it ?
Can anyone try it on a win 98, php4.1, apache 1.3.26 ?