|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-07-26 15:19 UTC] cysgwr_eryri at yahoo dot co dot uk
[2004-08-05 23:12 UTC] edink@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 08 18:00:01 2025 UTC |
Description: ------------ I'm using Aprelium's Abyss Web Server and PHP 5. When I try to open a url like script.php/test.html $PATH_INFO is not set, irregardless of whether register globals is set on or off. Reproduce code: --------------- <?php header("Content-type: text/html"); if (isset($PATH_INFO)) print("$PATH_INFO"); else print("Not set"); ?> Expected result: ---------------- /test.html Actual result: -------------- Not set