RE: [PHP] _SERVER variable insd prnt sttmnt

2002-04-30 Thread Andrew Chase
; From: 1LT John W. Holmes [mailto:[EMAIL PROTECTED]] > Sent: Monday, April 29, 2002 8:30 AM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] _SERVER variable insd prnt sttmnt > > > > > // print "" . > > This is the problem with not breaking out of a string to display >

Re: [PHP] _SERVER variable insd prnt sttmnt

2002-04-29 Thread 1LT John W. Holmes
> > //print "" . This is the problem with not breaking out of a string to display a variable. Ideally, you would do it this way: print ""; But some people just have a problem with doing it that way, so you can use braces. print ""; If you don't use the braces, how is PHP supposed to know what

Re: [PHP] _SERVER variable insd prnt sttmnt

2002-04-29 Thread Jason Wong
On Monday 29 April 2002 23:05, Kirk Babb wrote: > Hi All, > > Thanks alot for all your help with the _SERVER['PHP_SELF'] earlier, I have > another question related to that: > > What is the correct syntax for the above if I want to use it in a print > statement like so (I included the whole piece o

[PHP] _SERVER variable insd prnt sttmnt

2002-04-29 Thread Kirk Babb
Hi All, Thanks alot for all your help with the _SERVER['PHP_SELF'] earlier, I have another question related to that: What is the correct syntax for the above if I want to use it in a print statement like so (I included the whole piece of code so you guys could at least see what I'm trying to do)