我正在尝试使用sql
在我的数据库中保存一些信息 if(isset($_POST['hidden']))//check the checkbox
$x=1;
else
$x=0;
$pathh='../images/'.$_FILES['fileToUpload']['name'];
$album=$_POST['album'];
$title=$_POST['title'];
$order=$_POST['order'];
//echo $x.$album.$title.$order.$pathh;
$sql = "INSERT INTO `picture`(`url`, `album`, `title`, `order`, `hidden`) VALUES ('$pathh','$album','$title','$order','$x')";
$result = $con->query($sql);
$row = $result->fetch_assoc();
但是当我运行页面时,它会给我错误
Fatal error: Call to a member function fetch_assoc() on a non-object
我不擅长MySQL。我在那里做的是我从PHPMyAdmin复制了插入命令并从中删除了id
。
INSERT INTO `picture`(`id`, `url`, `album`, `title`, `order`, `hidden`) VALUES ([value-1],[value-2],[value-3],[value-4],[value-5],[value-6])
此错误的原因是什么?我该如何解决?
答案 0 :(得分:1)
代码的错误是句子
$row = $result->fetch_assoc();
由于在INSERT
上获取不会对不返回结果的查询起作用。