|
Posted by Erwin Moller on 06/13/07 15:22
damezumari wrote:
> I have just discovered that the problem can be simplified a bit;
> test3.php is not needed.
>
> $_SESSION['classtitle'] = 'b';
> echo 'main: '.$_SESSION['classtitle'].'<br />';
> unset($_SESSION['classtitle']);
> echo '<p><a href="test.php">test</a></p>';
>
> This displays:
>
> main: b
>
> But when I click the link to test.php I get:
>
> test: a
>
> Conclusion: $_SESSION['classtitle'] in test.php is not the same as in
> the main program. How come?
>
> Regards,
>
> Jan Nordgreen
Hi,
This shouldn't happen.
You unset that sessionvar, so it should be gone on test.php, and thus
produce an error.
You *DO* have errorreporting on I hope?
If unsure, inspect your php.ini, or put this above all your files:
error_reporting(E_ALL);
If that doesn't enlighten you in any way: Why don't you post both files here
so we can inspect them?
(Preferably your simplified versions)
Regards,
Erwin Moller
[Back to original message]
|