PHP CURRENT URL
From w3cyberlearnings
Contents |
PHP CURRENT URL
Get current URL. It returns the path and the file name of the URL.
Example
All get the same results.
<?php echo $_SERVER['PHP_SELF']; echo "<br/>"; echo $_SERVER['SCRIPT_NAME']; echo "<br/>"; ?>
Output
/goheme/index.php /goheme/index.php
Related Links
Manage URL