發表文章

目前顯示的是 9月, 2013的文章

CI基本設定與login頁面建立

圖片
1.下載codenogiter http://www.codeigniter.org.tw/downloads/file/CodeIgniter_2.1.4 將壓縮檔下的資料上傳至放置網頁的空間中 2.建立.htaccess => ci去掉index.php的方式 <IfModule mod_rewrite.c>    RewriteEngine on    RewriteBase / CI/    RewriteCond $1 !^(index\.php|images|swf|uploads|js|css|assets|robots\.txt|$)    RewriteRule ^(.*)$ index.php/$1 [L,QSA] </IfModule> #RewriteEngine on #RewriteBase / #RewriteCond $1 !^(index\.php|images|robots\.txt|$) #RewriteRule ^(.*)$ index.php/$1 [L,QSA] 3.在URL 移除 index.php 編輯application/config/config.php 將$config['index_page'] = 'index.php';改成$config['index_page'] = ''; 4.修改application/autoload.php 原 $autoload['libraries'] = array(); 修改為 $autoload['libraries'] = array( 'database','session' ); 5.編輯 application/config/database.php 6.編輯application/config/autoload.php 將$autoload['helper'] = array(); 修改為 $autoload['helper'] = array('f

使用者資料庫設定

圖片
1.建立資料庫使用者表單 users:使用者表單 temp_users:申請註冊使用者表單 2.users的表單結構 3.temp_users的表單結構 4.users預先建立使用者 其中password是以md5編碼方式 http://www.miraclesalad.com/webtools/md5.php password = 5f4dcc3b5aa765d61d8327deb882cf99

EasyPHP環境設定

圖片
單機操作是使用EasyPHP環境 帳號創立,有最基本的root, 接著創nee2427,此帳號內要建立三個table: 1.學生student_grade(部 division 、年級grade、班級class、學號Sid、中文姓名Cname、英文姓名Ename、護照ID、ELA、IS、Math、Enrichment、Eng、ELA_G、IS _G 、Math _G 、Enrichment _G 、Eng _G ) 這裡忘記拍照....跟下張照片一樣的意思 只能使用英文命名,類型varchar 長度255,先設定到護照,後面的先不設定讓他預設INT,以後要改再改,後面2.3表格也是varchar  長度255 varchar=最長字元 2.教師account(教師帳號T_account、姓名T_name、密碼password) 3.權限表competence (教師thacher) 全部建立完成如下圖 G=Group,有Group代表要建Jexcel