Posted by Steve on 10/17/06 17:31
"Mike" <mike@mjfcadsolutions.co.uk> wrote in message
news:1161103722.527343.158680@h48g2000cwc.googlegroups.com...
| Thanks for the explaination.
|
| I still don't understand how the site works OK for some yet people
| using AOL are having problems. Even using IE and not the AOL browser.
|
| I've suggested changing there privacy settings to medium to see what
| happens. I've yet to hear.
|
| Mike
it could be a few things. try forcing php to save session data to file
rather than cookies (which are client-side and may not be available based on
security). then just try something like this to test if it works:
<?
if (!$_SESSION['hello world'])
{
$_SESSION['hello world'] = 'you guessed it...Hello World!';
header('location:' . $_SERVER['PHP_SELF']);
exit;
}
echo $_SESSION['hello world'];
?>
i think you'll know when you've got it licked. ;^)
Navigation:
[Reply to this message]
|