Posted by Jeff on 01/04/07 21:52
php version 5.2.0
From http://no.php.net/session I've read that a session is either stored in
a cookie on the user side or is propagated in the URL.
So if the session below (see code example below) isn't propagated in the URL
then it's stored in a cookie?
And also I'm wondering about how can I set the expire time of this cookie?.
I mean I didn't use setcookie to create this cookie...
<?php
session_start();
$_SESSION['count'] = 3;
?>
Sorry I'm just a newbie
Jeff
[Back to original message]
|