简介 目录 评价 推荐
  • 论斤烤 2020-09-16

    面向过程之查询2

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-16

    面向过程之查询

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-16

    面向过程之新增预处理

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-16

    面向过程之更新删除数据

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-15

    面向过程1

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-15

    PHP Manual

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-15

    页面展示……

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-14

    事务管理2

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-14

    事务管理1

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-14

    insert account

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-14

    create table account

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-14

    预处理查询及结果绑定处理

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-14

    登陆页面,防sql注入

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-14

    登陆页面,防sql注入

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-14

    预处理sql

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-14

    返回多个结果集3

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-14

    返回多个结果集2

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-14

    返回多个结果集

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-14

    multi_query($sql)

    以第一条结果为准

    截图
    0赞 · 0采集
  • 论斤烤 2020-09-13

    zendstudio 安装emmet http://jingyan.baidu.com/article/acf728fd2ef0fcf8e510a3c0.html

    Tab键自动生生成

    截图
    0赞 · 0采集
  • 5769727 2019-12-31

    http://www.imooc.com/wenda/detail/576281

    https://www.php.net/manual/en/mysqli-stmt.get-result.php

    https://www.php.net/manual/en/mysqli-stmt.bind-result.php


    $stmt->store_result();
    $stmt->num_rows; 这句好像得搭配上句才可以使用


    0赞 · 0采集
  • 5769727 2019-12-29

    https://bbs.csdn.net/topics/380249341


    0赞 · 0采集
  • 5769727 2019-09-29

    https://www.imooc.com/qadetail/137928

    0赞 · 0采集
  • 5769727 2019-09-20

    替代语法

    https://www.php.net/manual/zh/control-structures.alternative-syntax.php


    https://www.php.net/manual/zh/control-structures.alternative-syntax.php

    0赞 · 0采集
  • 5769727 2019-09-17

    约束有多种,主键约束primary key/唯一约束unique key/外键约束foreign key/非空约束not null/默认约束default,基本就这几种,primary key 也可以写成key 和其他约束并不冲突,你可以理解为primary key是最常用最基本约束写成key也可以被sql引擎识别,但是如果是其他如唯一约束(unique key)或者外键约束(foreign key)就必须写清楚,否则会报错,其实你可以在cmd命令行里实践一下就清楚了.

     来源:

    https://www.imooc.com/qadetail/259440


    0赞 · 0采集
  • 快乐闲鱼王 2019-06-14

    检测开启了什么扩展的函数

    get_loaded_extensions(),返回的是一个数组

    0赞 · 0采集
  • 碰磁王110 2019-05-16

    //print_r(extension_loaded('mysqli'));

    //预处理语句 -参数绑定

    $mysqli = new mysqli('localhost','root','123456','shopsn');

    if($mysqli->errno){

    die('Connet Error'.$mysqli->error);

    }

    $sql = "Insert atext(username,password,age) value (?,?,?)";

    //$sql = 'select * from atext where username = ? and password = ?';

    $mysqli_stmt = $mysqli->prepare($sql);

    $username = 'admin';

    $password = md5(123456);

    $age = 18;

    // ssi 规定参数的数据类型,防止SQL注入

    $mysqli_stmt->bind_param('ssi',$username,$password,$age);

    if($mysqli_stmt->execute()){

    echo $mysqli_stmt->insert_id;

    //$mysqli_stmt->bind_result($id,$username,$age);

     }else{

      $mysqli_stmt->error;

     }

    $mysqli_stmt->free_result();

    $mysqli_stmt->close();

    $mysqli->close();


    0赞 · 0采集
  • 不那么潇洒 2019-04-03

    $mysqli -> autocommit(false) 关闭mysql中的自动提交

    $mysqli -> commit()  提交

    $mysqli -> autocommit(true)  开启mysql自动提交

    $mysqli -> rollback()     事务回滚


    0赞 · 0采集
  • 不那么潇洒 2019-04-03

    $mysqli_stmt -> bind_result()  绑定结果集中值到变量 

    $mysqli_stmt -> fetch() 遍历结果集 

    0赞 · 0采集
  • 不那么潇洒 2019-04-03

    $mysqli_stmt -> free_result() 释放结果集

    $mysqli_stmt -> close() 关闭预处理语句

    可以用预处理语句来防止sql注入

    0赞 · 0采集
数据加载中...
开始学习 免费