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