RE: [PHP] Unexpected Notice message

2012-07-05 Thread Arno Kuhl
-Original Message-
From: Tim Streater [mailto:t...@clothears.org.uk] 
Sent: 04 July 2012 06:56 PM
To: Marc Guay; php-general@lists.php.net
Subject: Re: [PHP] Unexpected Notice message

On 04 Jul 2012 at 16:51, Marc Guay marc.g...@gmail.com wrote: 

 Notice: Use of undefined constant QUERY_STRING - assumed 'QUERY_STRING' in

 I would guess that it's asking you to add quotes around QUERY_STRING...?

As in:
if (strlen($_SERVER['QUERY_STRING'])  0) {


Cheers  --  Tim


Excellent, a bit surprised but that was it, thanks a lot.

Cheers
Arno


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Unexpected Notice message

2012-07-05 Thread Andrew Ballard
On Thu, Jul 5, 2012 at 3:10 AM, Arno Kuhl a...@dotcontent.net wrote:
 -Original Message-
 From: Tim Streater [mailto:t...@clothears.org.uk]
 Sent: 04 July 2012 06:56 PM
 To: Marc Guay; php-general@lists.php.net
 Subject: Re: [PHP] Unexpected Notice message

 On 04 Jul 2012 at 16:51, Marc Guay marc.g...@gmail.com wrote:

 Notice: Use of undefined constant QUERY_STRING - assumed 'QUERY_STRING' in

 I would guess that it's asking you to add quotes around QUERY_STRING...?

 As in:
 if (strlen($_SERVER['QUERY_STRING'])  0) {


 Cheers  --  Tim
 

 Excellent, a bit surprised but that was it, thanks a lot.

 Cheers
 Arno

Why does this surprise you? $_SERVER is an array with string indices,
one of which happens to be the string 'QUERY_STRING'. However, your
code is trying to reference a constant named QUERY_STRING that does
not exist. The code will work because PHP will assume you meant to use
a string instead of a constant, but this will also generate a notice
to let you know that the code should be fixed.

Andrew

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Unexpected Notice message

2012-07-05 Thread RGraph.net support
Hi,

 that the code should be fixed.

Or the error reporting turned down... :-)

-- 
Richard, RGraph.net support
JavaScript charts for your website using RGraph
http://www.rgraph.net

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Unexpected Notice message

2012-07-05 Thread Matijn Woudt
On Thu, Jul 5, 2012 at 6:54 PM, RGraph.net support supp...@rgraph.net wrote:
 Hi,

 that the code should be fixed.

 Or the error reporting turned down... :-)

And one day, you decide to write
define('QUERY_STRING', Oh I was so stupid that day);

and since you turned down your error reporting, you will have lots of fun!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Unexpected Notice message

2012-07-04 Thread Arno Kuhl
I'm a bit baffled by a notice message displayed:
Notice: Use of undefined constant QUERY_STRING - assumed 'QUERY_STRING' in
..

The line in question has
if (strlen($_SERVER[QUERY_STRING])  0) {
..

So I set a breakpoint on the line of the notice. The code executes to the
breakpoint, I inspect the $_SERVER[QUERY_STRING] and it's got the expected
value, it only executes that line once (never gets to that breakpoint
again), and yet I get the notice message. Can anyone give me an idea what's
going on here?

Cheers
Arno


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Unexpected Notice message

2012-07-04 Thread Marc Guay
 Notice: Use of undefined constant QUERY_STRING - assumed 'QUERY_STRING' in

I would guess that it's asking you to add quotes around QUERY_STRING...?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Unexpected Notice message

2012-07-04 Thread Tim Streater
On 04 Jul 2012 at 16:51, Marc Guay marc.g...@gmail.com wrote: 

 Notice: Use of undefined constant QUERY_STRING - assumed 'QUERY_STRING' in

 I would guess that it's asking you to add quotes around QUERY_STRING...?

As in:

if (strlen($_SERVER['QUERY_STRING'])  0) {


--
Cheers  --  Tim

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php