Re: When is it possible for $_SERVER['SERVER_NAME'] to contain something other than the URL which actvated the script? [message #179857 is a reply to message #179852] |
Wed, 12 December 2012 13:27 |
Scott Johnson
Messages: 196 Registered: January 2012
Karma:
|
Senior Member |
|
|
On 12/11/2012 11:25 PM, Tony Marston wrote:
>> You may try phpinfo() to get the full list of data/variables set by
>> your server. Some here may ask for that info to help you further.
>
> The output from phpinfo() looks perfectly normal and correct. It shows
> the expected values for SERVER_NAME and HTTP_HOST.
>
If you are getting the right value in SERVER_NAME and HTTP_HOST using
phpinfo() but are then getting a different value when you use the same
variable in your script, then you have an error in your script.
You may somewhere be setting the variables when you think you may be
comparing them.
if(SERVER_NAME = 'blabla')... set
if(SERVER_NAME == 'blabla')... compare
|
|
|