php-codeigniter
文章平均质量分 79
天理小学渣
CS
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CodeIgniter_05_Model
ModelNotes:A introduction of traditional structures and query builder pattern will be demonstrated followed by a deeper study into model.1.work with database1.1 simple examples1.1.1 getDataBaseConnectionAs you can see,\config\DataBase provides cleaner原创 2022-04-30 11:52:02 · 723 阅读 · 0 评论 -
CodeIgniter_04_View
View1.IntroductionWhat is View tier?View is the presentation component where displays all the details system provides.2.An intelligent thought on designating View architecture2.1 the normal thoughtreturn view('view_file_name');This thought always co原创 2022-04-23 18:55:56 · 271 阅读 · 0 评论 -
CodeIgniter_03_Router
RouterQ&AIntroduction:how does router work and what goal is this component for?A=>make URL shorter and friendly as well as better user experience.(customize URL)1.static page(/config/Route.php)$routes->add('parameter01','parameter02');//p原创 2022-04-20 15:10:06 · 172 阅读 · 0 评论 -
CodeIgniter_02_Controller
My First Project1.static page1.1 URL Secrethttp://example.com/[controller-class]/[controller-method]/[arguments]Take it for example:domain name +project name, controller-class / controller-method / arguments.=> https//localhost/CI4/welcome/login/原创 2022-04-19 22:52:39 · 152 阅读 · 0 评论 -
CodeIgniter_01
1.Installation1.1 download and install Codeigniterwebpage1.2 configurationDevelop your app inside the app folder.The public folder will be your public-facing document root.Do not change anything inside the system folder!CI4 has been already an ap原创 2022-04-19 15:33:27 · 623 阅读 · 0 评论
分享