Read-only archive of the All About Symbian forum (2001–2013) · About this archive

Cookies not accepted by Opera on Symbian?

0 replies · 1,704 views · Started 15 March 2004

Cookies don't seem to work on the P900/Opera.

- I am using the P900 Opera browser and a GPRS connection (T-Mobile).
- I switched on the "accept cookies" tag in the P900 browser, and tried clearing the cache and history.
- The PHP script test.php below was used to see if a cookie could be accepted. (I hope PHP is not a problem for readers of this forum😉 ).is The cookie below has a timeout period of 1000 seconds. The proper cookie value was never returned from the P900.

Can anyone point me in the right direction?

------test.php----------
<?php
setcookie("my_cookie","I am the cookie!",time()+1000,"/"😉;

if ( ! $_COOKIE['my_cookie'] )
{
echo "Reload this page to see cookie..";
}
else
{
echo $_COOKIE['my_cookie'];
};
?>
------end test.php----------