1c7 / VideoList

:us: -> :cn: @糖醋陈皮 翻译的视频列表
https://weibo.com/2004104451
57 stars 11 forks source link

CodeIgniter - 30 分钟入门 #82

Closed 1c7 closed 8 years ago

1c7 commented 8 years ago

CI 用了起码8个月了,现在要学点新东西,但是怕把 CI 全部忘掉了,所以这里写点东西。以后自己可以翻翻这样。这篇东西算是某种笔记和教程的混杂。。

CodeIgniter 是个 PHP 框架,目前最新版本是 3。

3比起2的差别不大,各种使用方法和文件夹结构都是一样的。想知道具体有啥改进可以看 Chang Log

CodeIgniter 用到了 MVC。 这里不多解释。


大纲:

  1. URL路由
  2. 怎样在 Controller 里载入 Model
  3. Model 里怎样与数据库交互
  4. 怎样在 Controller 里载入 View,以及传递数据给 View


1. URL路由


2. 怎样在 Controller 里载入 Model


3. Model 里怎样与数据库交互


4. 怎样在 Controller 里载入 View,以及传递数据给 View