Jack wrote:
Hello All,
I'm having a problem with this line of code which worked fine for years:
$l_url2 = ".".$_GET[SERVER_NAME];
Here is the error:
[Wed Mar 23 13:33:49 2011] [error] [client 16.139.201.61] PHP Notice: Use
of undefined constant SERVER_NAME - assumed 'SERVER_NAME' in
/hom
On Wed, Mar 23, 2011 at 10:46 AM, Jack wrote:
> I'm having a problem with this line of code which worked fine for years:
>
> $l_url2 = ".".$_GET[SERVER_NAME];
>
Place quotes around the key.
$l_url2 = ".".$_GET['SERVER_NAME'];
Normally PHP treats SERVER_NAME as the name of a constant. There
Hello All,
I'm having a problem with this line of code which worked fine for years:
$l_url2 = ".".$_GET[SERVER_NAME];
Here is the error:
[Wed Mar 23 13:33:49 2011] [error] [client 16.139.201.61] PHP Notice: Use
of undefined constant SERVER_NAME - assumed 'SERVER_NAME' in
/home//modules/j
3 matches
Mail list logo