|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-05-05 18:52 UTC] paj at pearfr dot org
Hello, Using Windows XP, latest snapshots and latest apache 1.3, php used as module. php always starts a new session, the cookies has been sent correctly with the correct sid. Using the same php version/apache/php.ini, the same script works perfectly. (I use the simple counter example from the php manual) pierre PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 18 12:00:01 2025 UTC |
This script works fine for using current stable (gold!) and apache 1.3.27 under winxp. <?php session_start(); // Use $HTTP_SESSION_VARS with PHP 4.0.6 or less if (!isset($_SESSION['count'])) { $_SESSION['count'] = 0; } else { $_SESSION['count']++; } var_dump($_SESSION['count']); ?>