[PHP] Re: Escaping '

2011-07-22 Thread Geoff Lane
On Friday, July 22, 2011, Floyd Resler wrote: I did a fresh install of PHP on a new server. I had gotten used to PHP automatically adding a backslash before single quotes when form data is submitted. It seems that is shut off in my new install. How do I turn it back on? Check the manual

Re: [PHP] Re: Escaping '

2011-07-22 Thread Richard Quadling
On 22 July 2011 16:56, Geoff Lane ge...@gjctech.co.uk wrote: On Friday, July 22, 2011, Floyd Resler wrote: I did a fresh install of PHP on a new server.  I had gotten used to PHP automatically adding a backslash before single quotes when form data is submitted.  It seems that is shut off in

[PHP] Re: escaping PHP's closing tags

2002-03-27 Thread Julio Nobrega Trabalhando
Haven't seen it either, but you could use: echo '' . '?'; So is separated from ?. Or ? from for the matter. -- Julio Nobrega. Um dia eu chego lá: http://sourceforge.net/projects/toca Ajudei? Salvei? Que tal um presentinho?

Re: [PHP] Re: escaping PHP's closing tags

2002-03-27 Thread Erik Price
On Wednesday, March 27, 2002, at 12:03 PM, Julio Nobrega Trabalhando wrote: Haven't seen it either, but you could use: echo '' . '?'; So is separated from ?. Or ? from for the matter. That's a good workaround. I'll use that until I hear from above. Erik Erik Price

[PHP] Re: Escaping a double-quote problem

2002-02-01 Thread Lerp
Look up addslashes and stripslashes in the manual. Normally you'd use addslashes going into the db, and stripslashes coming out for display. HTH Joe :) Anton Kolev [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Any idea why when I print the value of $text, I

[PHP] Re: Escaping a double-quote problem

2002-02-01 Thread Anton Kolev
oh yes and I had some magic_quote_smth=Yes parameter set by default in php.ini :) it's really not very smart to use it, it's very misleading one can see hundreds websites, which fill textareas with backslashes on re-submit to the same form Lerp [EMAIL PROTECTED] wrote in message [EMAIL

[PHP] Re: escaping special charecters upon submit

2001-08-25 Thread idesign
I have a form that submits data to a database, works great until someome puts in an apostrophe in the comments area...how do i escape this charecter upon insert? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

[PHP] Re: escaping special charecters upon submit

2001-08-25 Thread Andy Ladouceur
http://www.php.net/manual/en/function.addslashes.php That should work fine. -Andy [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I have a form that submits data to a database, works great until someome puts in an apostrophe in the comments area...how do i

Re: [PHP] Re: escaping special charecters upon submit

2001-08-25 Thread idesign
Tried addslashes also urlencode, neither worked... the input is from a comment area in a form...that adds data to a mysql database...the comments contain commas and apostrphes, that when you try to subit, screw up the execution of the insert Any help would be very very very very

Re: [PHP] Re: escaping special charecters upon submit

2001-08-25 Thread Don Read
On 26-Aug-2001 [EMAIL PROTECTED] wrote: Tried addslashes also urlencode, neither worked... the input is from a comment area in a form...that adds data to a mysql database...the comments contain commas and apostrphes, that when you try to subit, screw up the execution of the insert

Re: [PHP] Re: escaping special charecters upon submit

2001-08-25 Thread idesign
mine always says ask don lol...actually got it figured out right after muy last post rawurlencode worked great Thanks though! On 26-Aug-2001 [EMAIL PROTECTED] wrote: Tried addslashes also urlencode, neither worked... the input is from a comment area in a form...that adds data

RE: [PHP] Re: escaping special characters upon submit

2001-08-25 Thread Navid Yar
, 2001 2:49 PM To: Sunil Jagarlamudi; [EMAIL PROTECTED] Subject: [PHP] Re: escaping special charecters upon submit I have a form that submits data to a database, works great until someome puts in an apostrophe in the comments area...how do i escape this charecter upon insert? -- PHP