已采纳回答 / Fourtwothree
"造成了添加商品时图片地址没添加到imooc_album表里",这样你的if($res && $res1) 中 $res1 的值一直为0, 提示删除失败。删除失败的情况下,分两种情况二者同时删除失败二者有一删除失败我觉得应该再分别判断,二者是否同时删除,数据是否删除,图片是否删除...
2015-05-30
完全照着输入就是报错啊!救命!!!
CREATE DATABASE IF NOT EXISTS 'shop';
USE 'shop';
反馈是:
MySQL 返回:文档
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''shop'' at line 1
CREATE DATABASE IF NOT EXISTS 'shop';
USE 'shop';
反馈是:
MySQL 返回:文档
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''shop'' at line 1
最赞回答 / 逐梦凡
数据表用户表imooc_user中没有邮箱箱,所有添加失败,应该是课程给跳过去了,研究几天才发现的,把邮箱哪项添加上就可以了:alter table imooc_user add email varchar(50) not null;
2015-05-28