RE: [PHP] Escaping the ' character

2003-09-11 Thread Chris W. Parker
Dan Anderson mailto:[EMAIL PROTECTED]
on Wednesday, September 10, 2003 5:17 PM said:

 If you don't like somebodys post just ignore it.  I'd bet your 2 cents
 that you don't find every post to this list interesting.  Do you reply
 to those people and ask them to not post stuff that doesn't interest
 you?

Dan,

You've completely misread and misinterpreted Robert's comments. He
didn't say he didn't want to read posts he wasn't interested in and he
didn't ask the poster to not post things he wasn't interested in
reading. He DID however request that people not send html emails to the
list.

How the heck did you turn a request for no html emails into a request
for people to not post things Robert is uninterested in??



Chris.

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



RE: [PHP] Escaping the ' character

2003-09-11 Thread Dan Anderson
 You've completely misread and misinterpreted Robert's comments. He
 didn't say he didn't want to read posts he wasn't interested in and he
 didn't ask the poster to not post things he wasn't interested in
 reading. He DID however request that people not send html emails to the
 list.

Oh wait, he means HTML e-mails?  I thought he meant posts regarding to
HTML.  Please disregard my previous posts.

lower_flamethrower();

-Dan

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



RE: [PHP] Escaping the ' character

2003-09-11 Thread Robert Cummings
*chuckle* this explains your responses to me. In this new light I
apologize for my condescending responses.

Cheers,
Rob.


On Thu, 2003-09-11 at 20:17, Dan Anderson wrote:
  You've completely misread and misinterpreted Robert's comments. He
  didn't say he didn't want to read posts he wasn't interested in and he
  didn't ask the poster to not post things he wasn't interested in
  reading. He DID however request that people not send html emails to the
  list.
 
 Oh wait, he means HTML e-mails?  I thought he meant posts regarding to
 HTML.  Please disregard my previous posts.
 
 lower_flamethrower();
 
 -Dan
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 
-- 
.-.
| Worlds of Carnage - http://www.wocmud.org   |
:-:
| Come visit a world of myth and legend where |
| fantastical creatures come to life and the  |
| stuff of nightmares grasp for your soul.|
`-'

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



[PHP] Escaping the ' character

2003-09-10 Thread Todd Cary




I need to print the following:

moz-txt-link-freetext" href="">http://www.gilardi.com/pdf/gwyt1poc.pdf','','')"

and I am not sure how to escape the " ' " characters.

Actually, the 'http://www.gilardi.com/pdf/gwyt1poc.pdf' will be a
variable, $url.

Can someone point me toward some docs on this?

Many thanks!

Todd
-- 



inline: NewLogo.gif

Re: [PHP] Escaping the ' character

2003-09-10 Thread Mike Migurski
I need to print the following:

onClick=MM_openBrWindow('http://www.gilardi.com/pdf/gwyt1poc.pdf','','')

and I am not sure how to escape the  '  characters.

with a slash.
http://www.google.com/search?q=php+single+quote+escape+site%3Aphp.net

-
michal migurski- contact info and pgp key:
sf/cahttp://mike.teczno.com/contact.html

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



Re: [PHP] Escaping the ' character

2003-09-10 Thread Robert Cummings
I believe the general posting guidelines discourage posting HTML to
mailing lists, and to be quite honest many of us pay for our bandwidth
and don't need your 8k image eating up resources.

2 cents,
Rob.


On Wed, 2003-09-10 at 13:27, Todd Cary wrote:
 I need to print the following:
 
 onClick=MM_openBrWindow('http://www.gilardi.com/pdf/gwyt1poc.pdf','','')
 
 and I am not sure how to escape the  '  characters.
 
 Actually, the 'http://www.gilardi.com/pdf/gwyt1poc.pdf' will be a 
 variable, $url.
 
 Can someone point me toward some docs on this?
 
 Many thanks!
 
 Todd
 -- 
-- 
.-.
| Worlds of Carnage - http://www.wocmud.org   |
:-:
| Come visit a world of myth and legend where |
| fantastical creatures come to life and the  |
| stuff of nightmares grasp for your soul.|
`-'

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



Re: [PHP] Escaping the ' character

2003-09-10 Thread murugesan



Try this

?php$url="";echo "a href=# 
asd/a";?
HTH
-Murugesan

  - Original Message - 
  From: 
  Todd 
  Cary 
  To: [EMAIL PROTECTED] 
  Sent: Wednesday, September 10, 2003 10:57 
  PM
  Subject: [PHP] Escaping the " ' " 
  character
  I need to print the 
  following:http://www.gilardi.com/pdf/gwyt1poc.pdf">http://www.gilardi.com/pdf/gwyt1poc.pdf','','')"and 
  I am not sure how to escape the " ' " characters.Actually, the 'http://www.gilardi.com/pdf/gwyt1poc.pdf' 
  will be a variable, $url.Can someone point me toward some docs on 
  this?Many thanks!Todd
  -- 


Re: [PHP] Escaping the ' character

2003-09-10 Thread Dan Anderson
 I believe the general posting guidelines discourage posting HTML to
 mailing lists, and to be quite honest many of us pay for our bandwidth
 and don't need your 8k image eating up resources.

If you don't like somebodys post just ignore it.  I'd bet your 2 cents
that you don't find every post to this list interesting.  Do you reply
to those people and ask them to not post stuff that doesn't interest
you?

IMHO if people have questions about non PHP stuff that is related (like
HTML or javascript) I think they should feel free to post to the
listserv.  I've done it (sometimes google is no help) and it's helped me
out big time, and I have no problems helping people out who do it.  It's
like, scratch my back and I'll scratch yours.  That's why I post on this
listserv.  It helps me and I help others on it.  And that's the way it
should be.

-Dan

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



Re: [PHP] Escaping the ' character

2003-09-10 Thread Robert Cummings
Funny, I could swear I made a comment about bandwidth not topic. You
should go read my original message, then read the guidelines, then
wonder to yourself if you are all alone in this world -- if you by
chance find that you're not in your own little world, perhaps you see
why guidelines posted for everyone, aren't about you or me in
particular.

Cheers,
Rob.

On Wed, 2003-09-10 at 20:17, Dan Anderson wrote:
  I believe the general posting guidelines discourage posting HTML to
  mailing lists, and to be quite honest many of us pay for our bandwidth
  and don't need your 8k image eating up resources.
 
 If you don't like somebodys post just ignore it.  I'd bet your 2 cents
 that you don't find every post to this list interesting.  Do you reply
 to those people and ask them to not post stuff that doesn't interest
 you?
 
 IMHO if people have questions about non PHP stuff that is related (like
 HTML or javascript) I think they should feel free to post to the
 listserv.  I've done it (sometimes google is no help) and it's helped me
 out big time, and I have no problems helping people out who do it.  It's
 like, scratch my back and I'll scratch yours.  That's why I post on this
 listserv.  It helps me and I help others on it.  And that's the way it
 should be.
 
 -Dan
 
 
-- 
.-.
| Worlds of Carnage - http://www.wocmud.org   |
:-:
| Come visit a world of myth and legend where |
| fantastical creatures come to life and the  |
| stuff of nightmares grasp for your soul.|
`-'

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