Re: [PHP-WIN] quotes in mysql

2004-04-03 Thread Luiz Miguel Axcar
-- From: Sudeep Sarath <[EMAIL PROTECTED]> To: Php-windows mailing list <[EMAIL PROTECTED]> Sent: Friday, April 02, 2004 6:16 AM Subject: [PHP-WIN] quotes in mysql > Hi friends, > > I have a 'textarea' in my php page and i need to put the details typed in that textarea b

Re: [PHP-WIN] quotes in mysql

2004-04-02 Thread Ignatius Reilly
h'" <[EMAIL PROTECTED]>; "'Php-windows mailing list'" <[EMAIL PROTECTED]> Sent: Friday, April 02, 2004 3:22 PM Subject: RE: [PHP-WIN] quotes in mysql You can use addslashes .. which would be $check = addslashes($check); Then when you extract the inform

RE: [PHP-WIN] quotes in mysql

2004-04-02 Thread Tony Devlin
riginal Message- From: Sudeep Sarath [mailto:[EMAIL PROTECTED] Sent: Friday, April 02, 2004 3:16 AM To: Php-windows mailing list Subject: [PHP-WIN] quotes in mysql Hi friends, I have a 'textarea' in my php page and i need to put the details typed in that textarea box to my MySQL dat

RE: [PHP-WIN] quotes in mysql

2004-04-02 Thread Svensson, B.A.T. (HKG)
---- From: Sudeep Sarath To: Php-windows mailing list Sent: 2004-04-02 10:16 Subject: [PHP-WIN] quotes in mysql Hi friends, I have a 'textarea' in my php page and i need to put the details typed in that textarea box to my MySQL database. The content in the textarea box is(for example) :

[PHP-WIN] quotes in mysql

2004-04-02 Thread Sudeep Sarath
Hi friends, I have a 'textarea' in my php page and i need to put the details typed in that textarea box to my MySQL database. The content in the textarea box is(for example) : I'm a good boy. and insert string is: insert into table_name (describe) values('" . $check . "') where check is t