欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

ThinkPHP框架学习之CRUD

程序员文章站 2024-01-25 09:15:22
...
User模块UserAction.class.php

select();//查询数据库
		$this->assign('data',$arr);//
		$this->display();
	}
	
	/*
	 * 向数据库插入数据
	 **/
	public function add(){
		$m=M('User');
		$m->username=$_POST['username'];
		$m->sex=$_POST['sex'];
		$num=$m->add();
		if ($num>0){
			$this->success('添加成功','index');//添加成功并返回首页
		}else {
			$this->error('添加失败');
		}
	}
	/*
	 * 显示添加表单
	 **/
	public function addform(){
		$this->display();
	}
}
?>


首页模板文件index.html

ID号 用户名 性别 操作
{$vo.id} {$vo.username} {$vo.sex} 删除|修改

添加表单模板addform.html

相关标签: 框架