In article <01cd01c09b0d$7f247630$0101a8c0@server>, [EMAIL PROTECTED] 
("Pankaj Ahuja") wrote:

> Is it possible to insert apostrophe into a Mysql database ?? I have a
> varchar type column and want to insert " manufacturer's" into it. How can I
> do this ??

Escape it with a slash: " manufacturer\'s". Or have PHP do it for you: 
addslashes(" manufacturer's").

-- 
CC

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to