This is odd, but for some reason the $_SERVER["SCRIPT_URI"] will not return the domain name when I am in child/sub-pages but will only work on the main page. Not sure if its due to the script (WordPress) or host, but please can you suggest any reliable solution to retrieve the domain name with PHP?
| ||||
|
feedback
|
|
If you need domain name, use:
| |||
|
feedback
|
|
When in doubt
| |||
|
feedback
|
|
Depending on what you want, I'd use one of the following:
EDIT: Maybe PHP_SELF isn't the best. See comments. | |||||
feedback
|
Additionally as far as I know, making use of unsanitized $_SERVER["PHP_SELF"] could be an absolute security risk. | ||||
|
feedback
|
|
This might be due to URL rewriting, you can try $_SERVER['REQUEST_URI'] instead if you want the path that was called in the url. | |||||
feedback
|
|
If your browser formats JSON documents nicely and no output has taken place, inserting the following will result in something more readable than var_dump:
| |||
|
feedback
|