PHP Framework- CodeIgniter 2.0 快速學習

結合安全性與維護性,Framework、MVC學習初學者第一推薦-Codelgniter
建議:需有基本PHP概念(物件導向)、音量有點小,可以戴耳機聽(呵呵屁話)
Codeigniter文件目錄
出處:自由軟體鑄造場
主講者:吳柏毅(appleboy)

PPT:






內容:
Codelgniter簡介、優點、版本歷史、MVC架構。


內容:
Codelgniter架構、路徑、Controller、Route。


內容:
Views、Ajax、Lirbary、資料庫使用

--------------------------------------------------------------------------------------------------------------------------
(補充Code:Codelgniter 最簡單的MVC架構Code)

View(views/product.php)
<html>
      <body>
            <p>Product Count:<?  =$count ?></p>
      </body>
</html>

Controller(controllers/product.php)
functiom showProduct($id){

      $this->load->model('product');
      $count=$this->product->getCount($id);
      $data['count']=$count;
      $this->load->view('product' , $data);
}

Model(controllers/product.php)
functiom getCount($id){

      $this->db->where('id',$id);
      $this->db->from('my_product');
      $query = $this->db->get();

return $this->num_rows();
}


留言

熱門文章