我正在尝试实现一个comment.php
脚本,该脚本从html文本字段中获取数据并将其保存到phpMyAdmin中的数据库中。现在comment.php
更简单,不会在评论表中添加任何内容。
以下是comment.php
的代码:
<?php
session_start();
require('connect.php');
$id = $_SESSION['id'];
$comment = $_POST['comment'];
$sql = "INSERT INTO `comp595ose`.`comments`
(`id`, `comment`)
VALUES
(NULL, \'This is not working\');";
$add_comment = mysql_query($sql);
echo $comment." ";
echo $id;
?>
phpMyAdmin中的comments
表只有两个字段id(autoincrement)
和comment
。
答案 0 :(得分:2)
您无需转义单引号。
$sql = "INSERT INTO `comp595ose`.`comments` (`id`, `comment`) VALUES (NULL, 'This is not working');";
试试..(未经测试)