CodeIgniter框架基本增删改查操作示例
本文实例讲述了CodeIgniter框架基本增删改查操作。分享给大家供大家参考,具体如下:
对于codeigniter的增删改,在此我用自己的一个例子来说明一下:
创建数据库:
1
2
3
4
5
6
7
8
9
10
|
CREATETABLEIFNOTEXISTS `users` (
`id`int(10)NOTNULLAUTO_INCREMENT,
`username`varchar(50)NOTNULL,
`password`varchar(50)NOTNULL,
`email`varchar(100)NOTNULL,
`fullname`varchar(100)NOTNULL,
PRIMARYKEY(`id`),
UNIQUEKEY`username` (`username`),
UNIQUEKEY`email` (`email`)
) ENGINE=InnoDBDEFAULTCHARSET=utf8;
|
Model
MTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
classMTestextendsCI_Model{
publicfunction__construct(){
parent::__construct();
$this->load->database();
}
//insert into data
publicfunctioninsert_users($arr){
$this->db->insert('users',$arr);
}
//delete data
publicfunctiondelete_users($id){
$this->db->where('id',$id);
$this->db->delete('users');
}
//Alter data
publicfunctionupdate_users($username,$arr){
$this->db->where('username',$username);
$this->db->update('users',$arr);
}
//select data
publicfunctionselect_users($id){
$this->db->where('id',$id);
$this->db->select('*');
return$this->db->get('users');
//注意如果你返回的是以下内容的话,他就是一个对象的结果集,这样当你返回controller中时,你就得转换;
// return $query->result();
}
}
?>
|
Controller
home.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<?php
/**
* xxx.php
* ==============================================
* Copy right 2012-2015
* ----------------------------------------------
* This is not a free software, without any authorization is not allowed to use and spread.
* ==============================================
* @Author:YeXianMing
* @Email:LangWaiShiGe@hotmail.com
* @Version:zend studio10.6.2 php5.4.38 apache2.2
*/
if(!defined('BASEPATH'))exit('No direct script access allowed');
classHomeextendsCI_Controller{
publicfunction__construct(){
parent::__construct();
}
//insert data
publicfunctioninsert(){
$this->load->model('MTest','',TRUE);
$arr=array('username'=>'yexianming1','password'=>'admin','email'=>'11504160314qq.com','fullname'=>'luotianyexianming');
if(!($this->MTest->insert_users($arr))){
echo"插入数据成功";
}else{
echo"插入数据失败";
}
}
//update data
publicfunctionupdate(){
$this->load->model('MTest','',TRUE);
$arr=array('username'=>'Helloworld22','password'=>'root','email'=>'895787704@qq.com','fullname'=>'luotianyecong');
if(!($this->MTest->update_users('Helloworld',$arr))){
echo"修改成功";
}else{
echo"修改失败";
}
}
//delete data
publicfunctiondelete(){
$this->load->model('MTest','',TRUE);
$query=$this->MTest->delete_users(12);
if(!$query){
echo"删除成功";
}else{
echo"删除失败";
}
}
//select data
publicfunctionselect(){
$this->load->library('table');
$this->load->model('MTest','',TRUE);
$arr=$this->MTest->select_users(3);
$userinformation=$this->table->generate($arr);
$data['userinfor']=$userinformation;
$this->load->view('template',$data);
}
}
?>
|
view
temlate.php
1
|
<?phpecho$userinfor;?>
|
output:
1
2
|
id username password email fullname
3 Helloworld22 root 1111111@qq.com luotianyecong
|
更多关于CodeIgniter相关内容感兴趣的读者可查看本站专题:《codeigniter入门教程》、《CI(CodeIgniter)框架进阶教程》、《php优秀开发框架总结》、《ThinkPHP入门教程》、《ThinkPHP常用方法总结》、《Zend FrameWork框架入门教程》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于CodeIgniter框架的PHP程序设计有所帮助。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:service@webmeng.net 进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。
以上信息是否解决您的问题?
相关问题
- 阿里云OSS云储存
- JS 早中晚 提示问候代码
- Webmeng X 2025 升级
- webmeng 循环 列出 数据
- PHP判断语句
- 这个工具,节省80%工作量不过分吧
- CodeIgnter 报错 The Encrypt library...
- WebmengWeb 2024 体验版下载
- liunx系统开启推送服务
- Webmeng2024内页升级大全-访问ID分类地区留言 | 推荐
- webmeng第5代升级
- Webmeng登录模块login
- phpstudy配置运行CI4框架
- CI4框架应用三 - app目录
- Webmeng404错误 模板路径
- PHP获取当前页面URL路径
- CI框架中的开启调试模式
- JS如何实现网站中PC端和手机端自动识别并跳转对应的代码
- JS---PC端和移动端的无缝切换
- pc端、手机端网页切换
- 关于smarty限制文字输出字数
- php smarty 限制显示字数,smarty现在显示字数的各种...
- nginx和apache的区别,选择哪个好?
- Webmeng系统在Nginx下载伪静态写法
- ci 地址去掉index.php,CI框架去掉index.php的方
- search-高级搜索
- Webmeng 2022 V13.0.1 下载地址
- wap手机网页html通过特殊链接:打电话,发短信,发邮件详细教程
- Webmeng分类导航标签,模板
- Webmeng模板路径
- Webmeng内页导航
- Webmeng三级分类
- Webmeng控制器统计实现
- PHP安装扩展mcrypt以及相关依赖项 【PHP安装PECL扩展...
- Webmeng配置字段调用
- 调用Webmeng统计数据
- PHP单页统计方法
- .PHP后缀去除方法
- WebmengSAAS 商品管理 - 新增商品
- Webmengshop 支付宝配置
餐厅介绍
自助餐厅
用户评论