我有以下代码:

    if (!empty($_POST['w1']) && !empty($_POST['l1']))   {
        $str = "<a href='".$_POST['l1']."'>".$_POST['w1']."</a>";
        $content = str_replace($_POST['w1'],$str, $content);
    }
    $content = nl2br($content);
    echo "נוסף";
    echo $content;
mysql_query("INSERT INTO `posts` VALUES ('','".$_POST['subject']."','$content','0')");


php页面不返回任何错误。但是数据没有插入到数据库中。
有人知道是什么问题吗?

最佳答案

如果抛出任何mysql错误,它将不会显示给您。执行以下操作以查看错误:

mysql_query("INSERT INTO `posts` VALUES ('','". mysql_real_escape_string($_POST['subject']) . "','" . mysql_real_escape_string($content) . "','0')") or die mysql_error();


注意SQL注入!

关于php - 无法插入指向数据库的链接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21598490/

10-16 17:52