my query is like
$insert_query = "insert into post (post_title) values ('$post_title')";
If my post_title = Ronald's bio-data, I would not be able to insert the tuple because of the special character ' in my post_title.
How should solve this problem? Thank you in advance!