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

ThinkPHP框架学习之CRUD_PHP教程

程序员文章站 2022-06-05 13:23:50
...
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







www.bkjia.comtruehttp://www.bkjia.com/PHPjc/756256.htmlTechArticleUser模块UserAction.class.php select();//查询数据库$this->assign('data',$arr);//$this->display();}/* * 向数据库插入数据 **/public function add(){$m=M('User');$m->user...
相关标签: 框架