博客
关于我
PHP学习(五)
阅读量:130 次
发布时间:2019-02-26

本文共 1826 字,大约阅读时间需要 6 分钟。

MySQL ???????

MySQL ????

1. ?????

?? mysqli() ????????????

// ?????$mysql = new mysqli("localhost", "root", "root");if ($mysql->connect_error) {    die("????: " . $mysql->connect_error);}echo "?????";

2. ?????

???????????????????????

// ?????$sql = "CREATE DATABASE php";if ($mysql->query($sql) == true) {    echo "????????";} else {    echo "???????: " . $mysql->error;}

?????????

3. ?????

???????????

// ????$mysql = new mysqli("localhost", "root", "root", "php");if ($mysql->connect_error) {    die("????: " . $mysql->connect_error);}echo "?????";// ?????$sql1 = "CREATE TABLE user (    id INT unsigned AUTO_INCREMENT PRIMARY KEY,    pwd VARCHAR(20) NOT NULL)";if ($mysql->query($sql1) == true) {    echo "????????";} else {    echo "???????: " . $mysql->error;}// ????$sql2 = "INSERT INTO user VALUES('201801', '123456')";if ($mysql->query($sql2) == true) {    echo "???????";} else {    echo "??????: " . $mysql->error;}// ??????$sql3 = "INSERT INTO user VALUES('201802', '123456');";$sql3 .= "INSERT INTO user VALUES('201803', '123456');";if ($mysql->multi_query($sql3) == true) {    echo "?????????";} else {    echo "????????: " . $mysql->error;}

4. ?????

???????????????

// ?????$sql = $mysql->prepare("INSERT INTO user VALUES(?, ?)");$sql->bind_param("is", $id, $pwd);// ????$id = 201804;$pwd = "123456";if ($sql->execute()) {    echo "?????????";} else {    echo "????????";}

5. ????

?????????

// ????$sql = "SELECT * FROM user";$result = $mysql->query($sql);if ($result->num_rows > 0) {    while ($row = $result->fetch_assoc()) {        echo "????: id=" . $row["id"] . ", ??: " . $row["pwd"] . "
"; }}

Ajax ????

6. ????????

??Ajax?????????

???????????:

??:

???:

????

  • ?? mysqli() ???????????????
  • ???????????????????
  • ????????????????????
  • Ajax ???????????? gethint.php??????

转载地址:http://yxkf.baihongyu.com/

你可能感兴趣的文章
Postgres like 模糊查询匹配集合
查看>>
Postgres 自定义函数内实现 in 操作符的递归查询
查看>>
Postgres 返回当前时间前后指定天数的集合
查看>>
postgres--vacuum
查看>>
postgres--wal
查看>>
postgres--流复制
查看>>
postgres10配置huge_pages
查看>>
PostgreSQL 10.0 preview sharding增强 - pushdown 增强
查看>>
PostgreSQL 10.0 preview 变化 - pg_xlog,pg_clog,pg_log目录更名为pg_wal,pg_xact,log
查看>>
PostgreSQL 10.1 手册_部分 II. SQL 语言_第 15章 并行查询_15.2. 何时会用到并行查询?...
查看>>
PostgreSQL 10.1 手册_部分 II. SQL 语言_第 9 章 函数和操作符_9.23. 行和数组比较
查看>>
PostgreSQL 10.1 手册_部分 III. 服务器管理_第 21 章 数据库角色
查看>>
Qt开发——网络编程UDP网络广播软件之服务器端
查看>>
Postgresql 12.9如何配置允许远程连接
查看>>
PostgreSQL 9.6 同步多副本 与 remote_apply事务同步级别 应用场景分析
查看>>
Postgresql CopyManager 流式批量数据入库
查看>>
PostgreSQL cube 插件 - 多维空间对象
查看>>
PostgreSQL Daily Maintenance - cluster table
查看>>
PostgreSQL on Linux 最佳部署手册
查看>>
PostgreSQL Oracle 兼容性之 - pipelined
查看>>