ID: 8270
Updated by: jmoore
Reported By: [EMAIL PROTECTED]
Old-Status: Feedback
Status: Closed
Bug Type: *Function Specific
Assigned To: 
Comments:

closed through lack of user feedback.

Previous Comments:
---------------------------------------------------------------------------

[2000-12-15 02:32:25] [EMAIL PROTECTED]
doesn't happen with Linux/Apache

i guess the two additional count steps came
from the sub-requests for the two logos shown
by phpinfo

could you please try to use your script with image
loading disabled in your browser and see if this
changes the effect?

---------------------------------------------------------------------------

[2000-12-15 01:08:58] [EMAIL PROTECTED]
The following simple script should increment the counter by 1 on each reload.  Instead 
it increments by 3 on the first reload, then increments by 1 on subsequent reloads.  
Removing the phpinfo() command allows the counter to operate correctly.

Placing the phpinfo() command before the session start does not work either.

Please let me know if I have done something wrong, or if this is a real problem.

I am not running the isapi module.

Thanks
Steven


<html><head><title>PHP Test</title></head>
<body>


<?
// initialize a session
session_start();

// register a session variable
session_register ("counter");

// increment value of counter
$counter++;

// Display a cute message with counter
echo("You have reloaded this page $counter times.<P>");

// Display whole bunch of information
phpinfo(); 


?>
</body></html>

---------------------------------------------------------------------------



ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=8270&edit=2


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to