Re: [sqlite] Escaping chars

2004-03-10 Thread Richard Heyes
> Scott Ware [Wed, Mar 10, 2004 at 03:08:34PM -0500]: > > I am fairly new to SQLite, and I love it. I am having issues though when > > submitting a form (php) that requires text to be escaped. Such as the ' > > and " characters. > > read PHP docs for addslashes and stripslashes (string functions)

Re: [sqlite] Escaping chars

2004-03-10 Thread Michal Pasternak
Scott Ware [Wed, Mar 10, 2004 at 03:08:34PM -0500]: > I am fairly new to SQLite, and I love it. I am having issues though when > submitting a form (php) that requires text to be escaped. Such as the ' > and " characters. read PHP docs for addslashes and stripslashes (string functions) ---

Re: [sqlite] Escaping chars

2004-03-10 Thread Darren Duncan
At 3:08 PM -0500 3/10/04, Scott Ware wrote: Hi, I am fairly new to SQLite, and I love it. I am having issues though when submitting a form (php) that requires text to be escaped. Such as the ' and " characters. How do I do this? I have tried to place a \ before it, but it still is not working? Than

[sqlite] Escaping chars

2004-03-10 Thread Scott Ware
Hi, I am fairly new to SQLite, and I love it. I am having issues though when submitting a form (php) that requires text to be escaped. Such as the ' and " characters. How do I do this? I have tried to place a \ before it, but it still is not working? Thanks!