博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2013年5月2日

摘要: 1、使用mysqli扩展库 预处理技术 mysqli stmt 向数据库添加3个用户<?php //mysqli扩展库 预处理技术 mysqli stmt 向数据库添加3个用户 //1、创建mysqli对象 $mysqli = new MySQLi("localhost","root","root","test"); if($mysqli->connect_error){ die($mysqli->conncet_error); } //2、创建预编译对象 $sql="insert in 阅读全文

posted @ 2013-05-02 13:58 Step at a time 阅读(425) 评论(0) 推荐(1) 编辑