I want get url info using $PHP_SELF
but this only return url without paramaters after "?"
if the url is "http://www.123.com/index.php?id=3&m=5"
the $PHP_SELF only return
"http://www.123.com/index.php"
"?id=3&m=5" lost
what can I do if I want get the whole URL?
Is There any simple way??
😕