程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> ThinkPHP框架學習之CRUD

ThinkPHP框架學習之CRUD

編輯:關於PHP編程

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



	
	<script>
		function jump(){
			window.location='__URL__/addform';
		}
	</script>


	
		
			ID號
			用戶名
			性別
			操作
		
		
		
			{$vo.id}
			{$vo.username}
			{$vo.sex}
			刪除|修改
		
		
	
	



添加表單模板addform.html



	


		








  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved