Re: [PHP] "/19", the "/" doesn't work??

2002-01-18 Thread Scott Fletcher

I'm posting the result and solution that work!  At least the problem is now
fixed, thanks to Richard Crawford.

- clip 
Oh! In your first e-mail, you used a forward slash, not a back slash.

That was kind of confusing. Heh.

Try using "\\19" -- two back slashes. It worked well for me; you can

see the quick test page I made at http://www.mossroot.com/weirdstuff.php

Sliante,
 Richard S. Crawford

 mailto:[EMAIL PROTECTED]
 http://www.mossroot.com
 AIM:  Buffalo2K   ICQ: 11646404  Yahoo!: rscrawford
 MSN:  [EMAIL PROTECTED]

 "It is only with the heart that we see rightly; what is essential is
 invisible to the eye."  --Antoine de Saint Exupery

 "Push the button, Max!"
- clip 


Scott
"Scott Fletcher" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I tried your suggest and it doesn't work.  Sorry!
>
> Thanks,
>  Scott
> "Richard Crawford" <[EMAIL PROTECTED]> wrote in message
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > That's weird.  But try '\/19"; use the back-slash to escape the control
> > character.
> >
> >
> > Scott Fletcher wrote:
> >
> > > Hi!
> > >
> > > When I put the data, "/19"; into a PHP variable,   I found that it
> > > produce only "9" in the variable.  PHP probably think that "/1" is
like
> > > "/r", "/n", etc.  So, what substitute do I need to use to make it
"/19"
> > > instead of "9".  I don't know of any PHP code or shortcut to cancel
out
> that
> > > effect.
> > >
> > > Thanks,
> > >  Scott
> > >
> > >
> > >
> > >
> >
> >
> >
> > --
> > Sliante,
> > Richard S. Crawford
> >
> > mailto:[EMAIL PROTECTED]
> > http://www.mossroot.com
> > AIM:  Buffalo2K   ICQ: 11646404  Yahoo!: rscrawford
> > MSN:  [EMAIL PROTECTED]
> >
> > "It is only with the heart that we see rightly; what is essential is
> > invisible to the eye."  --Antoine de Saint Exupery
> >
> > "Push the button, Max!"
> >
> >
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] "/19", the "/" doesn't work??

2002-01-18 Thread val petruchek

"/19" is ok, but "\19" really fails. Try put "\\19" instead.


Valentin Petruchek (aki Zliy Pes)
http://zliypes.com.ua
mailto:[EMAIL PROTECTED]
- Original Message -
From: "Scott Fletcher" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, January 18, 2002 7:45 PM
Subject: [PHP] "/19", the "/" doesn't work??


> Hi!
>
> When I put the data, "/19"; into a PHP variable,   I found that it
> produce only "9" in the variable.  PHP probably think that "/1" is like
> "/r", "/n", etc.  So, what substitute do I need to use to make it "/19"
> instead of "9".  I don't know of any PHP code or shortcut to cancel out
that
> effect.
>
> Thanks,
>  Scott
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
>






-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] "/19", the "/" doesn't work??

2002-01-18 Thread Scott Fletcher

I tried your suggest and it doesn't work.  Sorry!

Thanks,
 Scott
"Richard Crawford" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> That's weird.  But try '\/19"; use the back-slash to escape the control
> character.
>
>
> Scott Fletcher wrote:
>
> > Hi!
> >
> > When I put the data, "/19"; into a PHP variable,   I found that it
> > produce only "9" in the variable.  PHP probably think that "/1" is like
> > "/r", "/n", etc.  So, what substitute do I need to use to make it "/19"
> > instead of "9".  I don't know of any PHP code or shortcut to cancel out
that
> > effect.
> >
> > Thanks,
> >  Scott
> >
> >
> >
> >
>
>
>
> --
> Sliante,
> Richard S. Crawford
>
> mailto:[EMAIL PROTECTED]
> http://www.mossroot.com
> AIM:  Buffalo2K   ICQ: 11646404  Yahoo!: rscrawford
> MSN:  [EMAIL PROTECTED]
>
> "It is only with the heart that we see rightly; what is essential is
> invisible to the eye."  --Antoine de Saint Exupery
>
> "Push the button, Max!"
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] "/19", the "/" doesn't work??

2002-01-18 Thread Richard Crawford

That's weird.  But try '\/19"; use the back-slash to escape the control 
character.


Scott Fletcher wrote:

> Hi!
> 
> When I put the data, "/19"; into a PHP variable,   I found that it
> produce only "9" in the variable.  PHP probably think that "/1" is like
> "/r", "/n", etc.  So, what substitute do I need to use to make it "/19"
> instead of "9".  I don't know of any PHP code or shortcut to cancel out that
> effect.
> 
> Thanks,
>  Scott
> 
> 
> 
> 



-- 
Sliante,
Richard S. Crawford

mailto:[EMAIL PROTECTED] 
http://www.mossroot.com
AIM:  Buffalo2K   ICQ: 11646404  Yahoo!: rscrawford
MSN:  [EMAIL PROTECTED]

"It is only with the heart that we see rightly; what is essential is 
invisible to the eye."  --Antoine de Saint Exupery

"Push the button, Max!"



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] "/19", the "/" doesn't work??

2002-01-18 Thread Scott Fletcher

Hi!

When I put the data, "/19"; into a PHP variable,   I found that it
produce only "9" in the variable.  PHP probably think that "/1" is like
"/r", "/n", etc.  So, what substitute do I need to use to make it "/19"
instead of "9".  I don't know of any PHP code or shortcut to cancel out that
effect.

Thanks,
 Scott



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]