$_SERVER['PHP_SELF']; is giving a double path entry
My question has nothing to do with the above issue. But, I need to ask my questions somewhere.
$_SERVER['PHP_SELF']; is giving a double path entry. I seen this issue in the forum before. What is it?
Reproduce code:
---------------
<?php
echo $_SERVER['PHP_SELF'];
?>
Expected result:
----------------
/testself/testself.php
Actual result:
--------------
/testself/testself.php/testself.php


