Re: variables using blank spaces

2001-12-06 Thread Randal L. Schwartz
> "Brett" == Brett W McCoy <[EMAIL PROTECTED]> writes: Brett> Duh... escaping isn't what you need, since you're probably Brett> doing this as a post. You should put your variable in quotes Brett> (which is what you should be doing anyway): Brett> But that'll fail if $var contains quotes o

RE: variables using blank spaces

2001-12-05 Thread Bob Showalter
> -Original Message- > From: Wagner Garcia Campagner [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, December 04, 2001 11:07 AM > To: [EMAIL PROTECTED] > Subject: variables using blank spaces > > > Hi, > > I have a varilable: > > $var = 'asdf asdf

Re: variables using blank spaces

2001-12-04 Thread Brett W. McCoy
On Tue, 4 Dec 2001, Wagner Garcia Campagner wrote: > I have a varilable: > > $var = 'asdf asdf asdf'; #using blank spaces > > Then i send it to another script like this: > > > > The problem is when i get it back the value became: > > $var = asdf > > It stops in the first blank space is the

Re: variables using blank spaces

2001-12-04 Thread Brett W. McCoy
On Tue, 4 Dec 2001, Wagner Garcia Campagner wrote: > I have a varilable: > > $var = 'asdf asdf asdf'; #using blank spaces > > Then i send it to another script like this: > > > > The problem is when i get it back the value became: > > $var = asdf > > It stops in the first blank space is the

Re: variables using blank spaces

2001-12-04 Thread Curtis Poe
--- Wagner Garcia Campagner <[EMAIL PROTECTED]> wrote: > Hi, > > I have a varilable: > > $var = 'asdf asdf asdf'; #using blank spaces > > Then i send it to another script like this: > > > > The problem is when i get it back the value became: > > $var = asdf > > It stops in the first blan

variables using blank spaces

2001-12-04 Thread Wagner Garcia Campagner
Hi, I have a varilable: $var = 'asdf asdf asdf'; #using blank spaces Then i send it to another script like this: The problem is when i get it back the value became: $var = asdf It stops in the first blank space is there a way for me to recover all the variable?? Thanks in advance, W