I am using following code to get the current URL
$current_url = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
Is there any other way to get the same, or may be better way to get current URL?
Thanks.
|
I am using following code to get the current URL
Is there any other way to get the same, or may be better way to get current URL? Thanks. |
||||
|
|
|
u can try
|
|||
|
You have to be careful relying on server variables, and it depends what the webserver wants to give you... Here's a fairly failsafe way to get the URL.
|
|||
|
|