Published in: PHP
|
|
|
URL: http://www.webcheatsheet.com/PHP/get_current_page_url.php
Expand |
Embed | Plain Text
<?php function curPageURL() { $pageURL = 'http'; if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";} $pageURL .= "://"; if ($_SERVER["SERVER_PORT"] != "80") { $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]; } else { $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; } return $pageURL; } ?> You can now get the current page URL using the line: <?php ?> Sometimes it is needed to get the page name only. The following example shows how to do it: <?php function curPageName() { } ?>
You need to login to post a comment.
