先導入數據表: CREATE TABLE `hxh_user` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `pwd` varchar(100) NOT NULL, PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; 涉及到的文件: ./Application/Common/Config/config.php //數據庫配置文件./Application/Home/Controller/IndexController.class.php //用戶的注冊與登錄處理都在里面./Application/Home/View/Index/index.html //登錄頁面./Application/Home/View/Index/reg.html //注冊頁面./Application/Home/View/Index/user.html //用戶中心 下載鏈接: |
|