This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

get the url of current page


avatar
capslock 0
From: -
get the url of current page

I need to get the url of current page to let users send me a feedback for each page they want.
I've tried this way:

.....
global $insert;
$URL = "";
$URL .= $PHP_SELF."?".$_SERVER['QUERY_STRING'];
.....


but it seems doesn't work

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: get the url of current page
avatar
OP 0
From: -
get the url of current page

perfect! thanks a lot!!!
1 Re: get the url of current page
avatar
Administrator
1340
From: Vienna, Austria
get the url of current page

Try the following:

$URL .= $_SERVER['PHP_SELF']."?".$_SERVER['QUERY_STRING'];

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.