drop table if exists `travel_user`;
create table `travel_user`(
`id` int unsigned auto_increment key,
`username` varchar(20) not null unique,
`password` char(32) not null,
`sex` enum("保密","男","女") not null default "保密",
`face` varchar(50) not null,
`regTime` int unsigned not null
);
Line 8报错,哪里错了啊?
create table `travel_user`(
`id` int unsigned auto_increment key,
`username` varchar(20) not null unique,
`password` char(32) not null,
`sex` enum("保密","男","女") not null default "保密",
`face` varchar(50) not null,
`regTime` int unsigned not null
);
Line 8报错,哪里错了啊?
学前端的,跟着老师学到了2-7,收获超级大!!很早的视频,现在跟着课程做会遇到很多问题,理清思路才是解决问题的关键啊,分享下我的代码 https://github.com/jiadesen/ds_demo ,此评论日期完成到课程的2-7
2016-11-22
提醒,判断是否有$_REQUEST['page']有错误,可以改成isset($_REQUEST['page'])判断是否有传值。
2016-11-20