码迷,mamicode.com
首页 > 其他好文 > 详细

使用预处理语句实现插入删除修改数据

时间:2015-06-01 22:20:26      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

预处理插入语句
  1. $m=new mysqli(‘localhost‘,‘root‘,‘‘,‘db‘);
  2. $m->set_charset(‘utf8‘);
  3. $stmt=$m->prepare(‘insert into stu values(null,?,?,?)‘);
  4. $n=‘aa‘;
  5. $g=‘保密‘;
  6. $s=10;
  7. $stmt->bind_param(‘ssi‘,$n,$g,$s);
  8. $stmt->execute();
  9. $stmt->close();
  10. $m->close();
预处理实现数据删除
  1. $m=new mysqli(‘localhost‘,‘root‘,‘‘,‘db‘);
  2. $m->set_charset(‘utf8‘);
  3. $stmt=$m->prepare(‘delete from stu where sid in (?,?)‘);
  4. $id1=1;
  5. $id2=2;
  6. $stmt->bind_param(‘ii‘,$id1,$id2);
  7. $stmt->execute();
  8. $stmt->free_result();
  9. $stmt->close();
  10. $m->close()
使用预处理语句实现数据的修改
  1. $m=new mysqli(‘localhost‘,‘root‘,‘‘,‘db‘);
  2. $m->set_charset(‘utf8‘);
  3. $stmt=$m->prepare(‘update stu set sname=? where sid=?‘);
  4. $s=‘hello‘;
  5. $d=7;
  6. $stmt->bind_param(‘ss‘,$s,$d);
  7. $stmt->execute();
  8. $stmt->free_result();
  9. $stmt->close();
  10. $m->close();






使用预处理语句实现插入删除修改数据

标签:

原文地址:http://www.cnblogs.com/lsr111/p/4544814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!