I am trying to insert a Paragraph (which contains a single quote in middle) into database as below.
$rule="**Mobile's** are not allowed into the room...................soon";
mysql_query("insert into table_name (rule) values('$rule')");
While executing the query that paragraph is not inserting. And i have directly tried in the Mysql using SQL option. There it shown error.
Any suggestions..?
Thanks