我是PostgreSQL的新手,我试图将html代码插入到我的数据库中,一些文本无法插入,例如单引号。我正在寻找一个可以帮助我修饰的代码。或允许允许插入我的字符。我尝试了以下代码,但它没有用。
$title= $_POST['title'];
$intro= $_POST['intro'];
$content= $_POST['content'];
$category= $_POST['category'];
$sort_footer = 24;
//insert code
$stmt = $dbh->prepare("INSERT INTO content(title, intro, content, category, sort_footer )
VALUES ( :title, :intro , :content , :category ,:sort_footer ) ");
$stmt->bindParam(':title', $title);
$stmt->bindParam(':intro', $intro);
$stmt->bindParam(':content', $content);
$stmt->bindParam(':category', $category);
$stmt->bindParam(':sort_footer', $sort_footer);
$stmt->execute();