[PHP] netscape 4.x problem

2002-06-23 Thread Thomas E. Ruth
Hi, I'm having trouble getting a script working right in netscape 4.x and was wondering if anybody knew a workaround, or fix. If I have a script called sendheader.php with the following: ? if (! isset($GLOBALS[sendheader])) { header(Location: http://blah.com/sendheader.php;);

Re: [PHP] netscape 4.x problem

2002-06-23 Thread Chris Shiflett
When you see document contains no data like that, the most likely cause is an endless loop. So, for whatever, reason, it seems that your conditional statement is returning true every time. Remove the Location header for now, and replace that line with: echo h1Redirecting to

Re: [PHP] netscape 4.x problem

2002-06-23 Thread Analysis Solutions
Hi Tom: On Sun, Jun 23, 2002 at 01:24:57AM -0600, Thomas E. Ruth wrote: If I have a script called sendheader.php with the following: ? if (! isset($GLOBALS[sendheader])) { header(Location: http://blah.com/sendheader.php;); exit; } echo blah; ? Dude, what IS the point