thinkphp資訊修改和分頁

2022-07-16 16:12:14 字數 785 閱讀 8604

關聯兩個資料表,在model裡建立stumodel.class.php:

<?php

//belongs_to 關聯表示當前模型從屬於另外乙個父物件

namespace admin\model;

use think\model\relationmodel;

class stumodel extends relationmodel

在view中建立stu資料夾,建立主頁面index.html:

名字性別

生日班級

修改

男 女

$vo[id]))}">編輯

名字性別

生日班級

修改

在stu中建立修改頁面edit.html:

名字性別

生日班級

修改

在controller中建立stucontroller.class.php:

<?php

namespace admin\controller;

use think\controller;

class stucontroller extends controller

public function ajaxselect()

public function editshow()

}public function editpost()

}}

修改 ThinkPHP5 分頁功能

1 目標效果 每頁 3 條資料 page admin render return this fetch data admin page page 4 修改框架原始碼 依次找到thinkphp library tink paginator driver bootstrap.php。新增首頁按鈕方法 首...

thinkphp 簡單分頁

1 首先,我們得建立乙個用於分頁測試的資料庫 test。sql 如下。php create table test id int 10 unsigned not null auto increment,name char 100 not null,content varchar 300 not nul...

ThinkPHP分頁例項

控制器中的 db m cost where 查詢條件 count db where where count pagecount 20 page new think page count pagecount page parameter row 此處的row是陣列,為了傳遞查詢條件 page setc...