添加管理员失败,但是数据库里和管理员列表添加成功了
还有我这个php是不是版本有问题啊
还有我这个php是不是版本有问题啊
2017-02-28
是这样的,mysqli_insert_id(connect()),returns the ID generated by a query on a table with a column having the AUTO_INCREMENT attribute. If the last query wasn't an INSERT or UPDATE statement or if the modified table does not have a column with the AUTO_INCREMENT attribute, this function will return zero.
也就是说,如果最后一句sql不是插入或者是update,返回值为0,我的建议是把insert方法的最后两行变成:
$result=mysqli_query(connect(),$sql);
return $result;
mysqli_query()函数如果是插入操作成功,那么返回值为true;
举报