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?
Thanks!

The standard way to escape single quotes (') inside text strings (always delimited by "'") is with two single quotes (''). You do not need to escape double-quotes (") as they are a different character from the string delimiters, and they are not nulls. -- Darren Duncan


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to