Re: [PHP] how do I get this line to work inside double quotes

2006-10-02 Thread Google Kreme
On 02 Oct 2006, at 17:13 , tedd wrote: At 4:59 PM -0600 10/2/06, Google Kreme wrote: On 02 Oct 2006, at 14:56 , Richard Lynch wrote: $mail_body .= "" . stripslashes($mail_text) . ""; Can we also comment on the horror that is the tag? I saw that as well, and had a similar response -- but I'

Re: [PHP] how do I get this line to work inside double quotes

2006-10-02 Thread tedd
At 4:59 PM -0600 10/2/06, Google Kreme wrote: On 02 Oct 2006, at 14:56 , Richard Lynch wrote: $mail_body .= "" . stripslashes($mail_text) . ""; Can we also comment on the horror that is the tag? I thought I was gonna puke... No? OK, moving along, nothing to see. I saw that as well, and h

Re: [PHP] how do I get this line to work inside double quotes

2006-10-02 Thread Google Kreme
On 02 Oct 2006, at 14:56 , Richard Lynch wrote: $mail_body .= "" . stripslashes($mail_text) . ""; Can we also comment on the horror that is the tag? I thought I was gonna puke... No? OK, moving along, nothing to see. -- The Piper's calling you to join him -- PHP General Mailing List (http

Re: [PHP] how do I get this line to work inside double quotes

2006-10-02 Thread Richard Lynch
On Mon, October 2, 2006 8:09 am, Ross wrote: $mail_body .= "" . stripslashes($mail_text) . ""; HOWEVER: The fact that you are calling "stripslashes" at all tells me that either: You've screwed up with Magic Quotes being on and calling addslashes (or mysql_[real_]escape_string) so you've essen

Re: [PHP] how do I get this line to work inside double quotes

2006-10-02 Thread Brad Bonkoski
Ross wrote: $mail_body .= "sans-serif\"> stripslashes($mail_text) "; this just returns {stripslashes(it\'s a testss} $mail_body .=" ".stripslashes($mail_text)." "; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php