Philip WATTS wrote:
> I have tried my scripts on another computer where they work ok, so I
> assume that something is wrong in my configuration. Can anyone give
> me a pointer please?
>
How do you set the session vars? Try the following and check the output:
page1.php:
<?php
session_start();
$_SESSION['message'] = "it works";
?>
page2.php:
<?php
session_start();
print $_SESSION['message'];
?>
JW<!-- ~MESSAGE_AFTER~ -->
>> Stay informed about: SESSION VARIABLE