Sessions do not work for me in any browser! IE5.5, N4.7+6.0
Posted: Sat Feb 15, 2003 11:11 pm
I've read all the threads on sessions here and I understand EVERYTHING. But even the simplest samples do not work.
I've tried
<?php
session_start();
++$_SESSION['AVAR'];
echo $_SESSION['AVAR'];
?>
And only get the value of 1 over and over.
I've tried
<?php session_start();
echo '<pre>'; print_r($HTTP_SESSION_VARS); echo '</pre>';
$HTTP_SESSION_VARS['test'] = 'value';
?>
and just get and empty array over and over.
It does not work for me. I've tried all my browsers IE 5.5, Netscape 4.7 and 6.0.
HELP, I am literally going nuts.
Ron
I've tried
<?php
session_start();
++$_SESSION['AVAR'];
echo $_SESSION['AVAR'];
?>
And only get the value of 1 over and over.
I've tried
<?php session_start();
echo '<pre>'; print_r($HTTP_SESSION_VARS); echo '</pre>';
$HTTP_SESSION_VARS['test'] = 'value';
?>
and just get and empty array over and over.
It does not work for me. I've tried all my browsers IE 5.5, Netscape 4.7 and 6.0.
HELP, I am literally going nuts.
Ron