php ci對mysql進行增刪改查

2022-08-03 23:27:22 字數 1187 閱讀 2337

php的ci是乙個mvc模式的框架,本文是通過php+ci對mysql資料庫進行增刪改查。

0. 首先在mysql資料庫方建立資料庫和資料表

1

create

database

test;

2use

test;

3create

table

user

(4 id int(10) not

null

auto_increment,

5 name varchar(50) not

null

,6 age int(10) not

null,7

primary

key(id)

8 );

view code

database.php

1

<?php23

class user_model extends

ci_model412

13function user_insert($arr)14

1718

function user_update($id, $arr)19

2324

function user_delete($id)25

2930

function user_select($id)31

37 }

view code

1

<?php23

class user extends

ci_controller411

12public

function

update()

1318

19public

function delete($id)20

2425

public

function

select()

2631 }

view code

4. 通過url即可對資料庫進行增刪改查了。

2015/08/27追記:

學習php一周時間,基於php+ci+mysql實現了個小系統(包含登入/退出功能,記住使用者登入資訊,資料的增刪改查,資料分頁顯示功能)

小系統源**:

通過PHP對MySQL進行增刪改查

建立資料庫 建立與mysql的連線 link mysqli connect localhost 3306 root root shuju if link 查詢資料 mysql命令在php中以字元的形式存在 sql select from tt 可以通過php的方法向mysql傳送命令 mysql的命...

對mysql資料庫進行增刪改查

1 新增字段 alter table student add stuage int notnull 2.修改字段 alter table student change stuage sage varchar 100 not null 3.修改表名 alter table students renam...

BenchmarkSQL對mysql進行效能測試

ps 先在mysql中建立 root 使用者,或自定義其他使用者,配到props.mysql配置檔案中。登入mysql 建立tpcc資料庫用於測試 mysql uroot p create databases tpcc show databases use tpcc show tables 1.修改...