Further to my earlier problem with sessions - I'm now even more stumped.
This is the simple test script for sessions directly from Welling/Thompson: page1.php
The script is as follows:
<?
session_start();
$_SESSION['sess_var'] = "Hello, world!";
echo "The value of sess_var is: ".$_SESSION['sess_var']."<br />";
?>
<a href="page2.php">Next page</a>
as page2.php (the link) is
<?
session_start();
echo "The content of sess_var is: ".$_SESSION['sess_var']."<br />";
unset($_SESSION['sess_var']);
?>
<a href="page3.php">Next page</a>
however, on the same server. I have the following pages: www.bellcars.co.uk/accounts/
which use sessions fine (and more extensively). Anybody tell me what might have changed for me to get these errors. The server is V4.1.2, and I get a similar error with V4.3.1 on XP
Thanks, njm