|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-04-18 12:58 UTC] ahorwitz at numoda dot com
[2008-10-21 11:29 UTC] jani@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 04:00:01 2025 UTC |
Description: ------------ Trying to install PHP 5 on XP with IIS. The following page runs once, then fails when refresh is clicked. If I close the browser and try the page again, the page loads once, then fails on refresh. Reproduce code: --------------- <?php session_start(); ?> <html> <head> <title>PHP Test</title> </head> <body> <p> The browser you're using is <?php echo $_SERVER['HTTP_USER_AGENT']; ?> </p> <p> <!-- test the browscap setup --> Your browser's capabilities are: <br/> <pre> <?php print_r(get_browser(null, true)); ?> </pre> </p> <?php phpinfo(); ?> </body> </html> Expected result: ---------------- It should work more than once without closing and opening my web browser. Actual result: -------------- Page just attempts to load.