PHP Get Current URL
Like this blog? Consider exploring one of our sponsored banner ads...
Sometimes it is not as straightforward as one may think to get the current url to use it inside your application. Here is a snippet that I use to fetch the current URL and use it in a script. The current url (whether http or https) is now a local variable that you can do with as you please.
$url = (!empty($_SERVER['HTTPS'])) ? "https://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'] : "http://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
Note: You should groom this value before using in anything sensitive, like a sql query.
About this entry
You’re currently reading “PHP Get Current URL,” an entry on BRADINO
- Published:
- 3.29.07 / 4pm
- Category:
- PHP
- Tags:
4 Comments
Jump to comment form | comments rss [?]