主頁(yè) > 知識(shí)庫(kù) > PHP實(shí)現(xiàn)數(shù)據(jù)庫(kù)的增刪查改功能及完整代碼

PHP實(shí)現(xiàn)數(shù)據(jù)庫(kù)的增刪查改功能及完整代碼

熱門標(biāo)簽:地圖標(biāo)注專員怎么樣 長(zhǎng)沙做地圖標(biāo)注公司 寧波外呼營(yíng)銷系統(tǒng) 房產(chǎn)中介用的是什么外呼系統(tǒng) 福建銀行智能外呼系統(tǒng)價(jià)格 電話機(jī)器人銷售主要負(fù)責(zé)什么 上海做外呼線路的通信公司 遼寧ai電銷機(jī)器人價(jià)格 四川保險(xiǎn)智能外呼系統(tǒng)供應(yīng)商

本文用到:jquery、tp框架

TP_3.2.2/Application/Home/Controller/StuController.class.php

?php 
/** 
 * Created by PhpStorm. 
 * User: root 
 * Date: 2018/4/17 
 * Time: 16:32 
 */ 
namespace Home\Controller; 
use Think\Controller; 
class StuController extends Controller 
{ 
 public function StuShow(){ 
  $this->display("school/stu"); 
 } 
 public function getdata(){ 
  $Studata = M('stu'); 
  $data['id']=''; 
  $data['name']=I('get.name'); 
  $data['age']=I('get.age'); 
  $data['num']=I('get.num'); 
  $data['address']=I('get.add'); 
  $Studata->add($data); 
  $this->success("正在。。。",U('Stu/showdata')); 
 } 
 public function showdata() 
 { 
  $Studata = M('stu'); 
  $data=$Studata->select(); 
  $this->assign('info',$data); 
  $this->display('school/showdata'); 
 } 
 public function del(){ 
  $id = I('get.id'); 
  $Studata = M('stu'); 
  $bool = $Studata->where(['id'=>$id])->delete(); 
  if($bool){ 
   echo 1; 
  }else{ 
   echo 0; 
  } 
 } 
 public function updata() 
 { 
  $id = I('get.id'); 
  $Studata = M('stu'); 
  $data = $Studata->where(['id'=>$id])->find(); 
  $this->assign('data',$data); 
  $this->display("school/upshowdata"); 
 } 
 public function updatadeal() 
 { 
  $Studata = M('stu'); 
  $id = I('get.id'); 
  $data['name']=I('get.name'); 
  $data['age']=I('get.age'); 
  $data['num']=I('get.num'); 
  $data['address']=I('get.add'); 
  $bool = $Studata->where(['id'=>$id])->save($data); 
  if($bool){ 
   $this->showdata(); 
  }else{ 
   echo 0; 
  } 
 } 
} 

TP_3.2.2/Application/Home/View/school/showdata.html

!DOCTYPE html> 
html lang="en"> 
head> 
 meta charset="UTF-8"> 
 title>數(shù)據(jù)展示界面/title> 
/head> 
body id="content"> 
center> 
 h2>學(xué)生信息展示/h2> 
table border="1"> 
 th>編號(hào)/th> 
 th>姓名/th> 
 th>年齡/th> 
 th>學(xué)號(hào)/th> 
 th>籍貫/th> 
 th>操作/th> 
 th>操作/th> 
foreach name="info" item="vo" > 
 tr> 
  td>{$vo['id']}/td> 
  td>{$vo['name']}/td> 
  td>{$vo['age']}/td> 
  td>{$vo['num']}/td> 
  td>{$vo['address']}/td> 
  td>a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" class="del" where="{$vo['id']}">刪除/a>/td> 
   td>a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" class="up" where="{$vo['id']}">修改/a>/td> 
 /tr> 
/foreach> 
/table> 
/center> 
/body> 
/html> 
script src="http://libs.baidu.com/jquery/2.1.4/jquery.min.js">/script> 
script> 
 $('.del').click(function () { 
  var where = $(this).attr('where'); 
  $.ajax({ 
   type: "get", 
   url: "{:U('Stu/del')}?id="+where, 
   success: function(msg){ 
    if(msg==1){ 
     alert('刪除成功'); 
     location.href('showdata'); 
    }else { 
     alert('刪除失敗'); 
    } 
   } 
  }); 
 }) 
 $('.up').click(function () { 
  var where = $(this).attr('where'); 
  location.href('updata?id='+where); 
  // $.ajax({ 
  //  type: "get", 
  //  url: "{:U('Stu/updata')}?id="+where, 
  //  success: function(msg){ 
  //   $('#content').html(msg); 
  //  } 
  // }); 
 }) 
/script> 

TP_3.2.2/Application/Home/View/school/stu.html

!doctype html> 
html lang="en"> 
head> 
 meta charset="UTF-8"> 
 meta name="viewport" 
   content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> 
 meta http-equiv="X-UA-Compatible" content="ie=edge"> 
 title> 學(xué)號(hào)注冊(cè)查詢系統(tǒng) /title> 
/head> 
body> 
form action="{:U('Stu/getdata')}" method="get"> 
 br> 
 名字: input type="text" name="name"> 
 br> 
 年齡: input type="text" name="age"> 
 br> 
 學(xué)號(hào):input type="text" name="num"> 
 br> 
 籍貫:input type="text" name="add"> 
 br> 
 input type="submit" value="提交"> 
 br> 
/form> 
/body> 
/html> 

TP_3.2.2/Application/Home/View/school/stu.html

!doctype html> 
html lang="en"> 
head> 
 meta charset="UTF-8"> 
 meta name="viewport" 
   content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> 
 meta http-equiv="X-UA-Compatible" content="ie=edge"> 
 title> 學(xué)號(hào)注冊(cè)查詢系統(tǒng) /title> 
/head> 
body> 
form action="{:U('Stu/updatadeal')}" method="get"> 
 input type="hidden" value="{$data['id']}" name="id"> 
 br> 
 名字: input type="text" name="name" value="{$data['name']}"> 
 br> 
 年齡: input type="text" name="age" value="{$data['age']}"> 
 br> 
 學(xué)號(hào):input type="text" name="num" value="{$data['num']}"> 
 br> 
 籍貫:input type="text" name="add" value="{$data['address']}"> 
 br> 
 input type="submit" value="提交"> 
 br> 
/form> 
/body> 
/html> 

執(zhí)行在瀏覽器里面輸入:http://127.0.0.1:90/TP_3.2.2/index.php/Home/Stu/stushow

點(diǎn)擊刪除

修改:


總結(jié)

以上所述是小編給大家介紹的PHP實(shí)現(xiàn)數(shù)據(jù)庫(kù)的增刪查改功能及完整代碼,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

您可能感興趣的文章:
  • PHP 獲取視頻時(shí)長(zhǎng)的實(shí)例代碼
  • PHP多維數(shù)組指定多字段排序的示例代碼
  • Php多進(jìn)程實(shí)現(xiàn)代碼
  • PHP 計(jì)算兩個(gè)特別大的整數(shù)實(shí)例代碼
  • PHP生成(支持多模板)二維碼海報(bào)代碼
  • PHP實(shí)現(xiàn)Huffman編碼/解碼的示例代碼
  • php無限級(jí)評(píng)論嵌套實(shí)現(xiàn)代碼
  • 如何避免PHP實(shí)例代碼中的一些壞代碼

標(biāo)簽:宿遷 延安 宜春 澳門 深圳 常德 佛山 工商登記

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP實(shí)現(xiàn)數(shù)據(jù)庫(kù)的增刪查改功能及完整代碼》,本文關(guān)鍵詞  PHP,實(shí)現(xiàn),數(shù)據(jù)庫(kù),的,增刪,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP實(shí)現(xiàn)數(shù)據(jù)庫(kù)的增刪查改功能及完整代碼》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于PHP實(shí)現(xiàn)數(shù)據(jù)庫(kù)的增刪查改功能及完整代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章