热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

MYsqli绑定插入与查询实例

<?php$connnewmysqli(localhost,root,,orders);连接$prepareinsertinto
php
    $conn = new mysqli('localhost','root','','orders'); //连接
    $prepare = "insert into t100 values (?,?,?)";//预设插入sql
    $bind = $conn->prepare($prepare);
    $t1 = NULL;
    $t2 = 'Www';
    $t3 = date('Y-m-d H:i:s');
    $bind->bind_param('iss',$t1,$t2,$t3); //绑定
    //注意iss:
    //i为int,s为string类型;意思是强制这几个参数的类型
    $bind->execute();//执行

    $prepare = "select * from t100"; //准备要查询的语句
    $bind = $conn->prepare($prepare);//预处理
    $t1 = 10;
    $bind->execute();//执行
    $bind->bind_result($id, $name, $date);//将字段列绑定到变量上
    $bind->store_result();//获取结果集
    while ($bind->fetch()){//遍历
        printf("%d == %s == %s
",$id,$name,$date);//输出 }

 


推荐阅读
author-avatar
赵晓伟
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有