摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
摘要:
function ajax(options) { let defaults = { type: "get" } Object.assign(defaults, options) let xhr = null if (window.VBArray) { xhr = new ActiveXObject( 阅读全文
摘要:
<script> let xhr=new XMLHttpRequest() xhr.open("get","url") // 请求方法、请求地址 xhr.onload=function(){ //回调函数 } xhr.send() //发送 let xhr=new XMLHttpRequest() 阅读全文
摘要:
<?php header("Content-Type:text/html;charset=utf8"); //字符集,防止中文页面乱码 $username = $_GET["username"]; //获取输入的用户名 $password = $_GET["password"]; //获取输入的密码 阅读全文
摘要:
<?php header("Content-Type:text/html;charset=utf8"); $username = $_GET["username"]; //获取输入用户名 $password = $_GET["password"]; //获取输入密码 $mysql_server_na 阅读全文
摘要:
<?php header("Content-Type:text/html;charset=utf8"); $mysql_server_name = "localhost:3306"; //数据库端口 $mysql_username = "root"; //用户名 $mysql_password = 阅读全文
摘要:
所谓事务,就是以某件事为单位,将多条SQL语句进行捆绑 这样做的目的是确保多条相关的SQL的完整性, 也就是要么全部执行成功,要么全都不执行 例如: 账户A转账给账户B 1000元 sql语句1 账户A减去1000元 sql语句2 账户B增加1000元 这两条SQL语句就是必须放在一个事务中的,这样 阅读全文
摘要:
了解数据类型 创建表格的时候,每一列都有数据类型的要求,数据库中的类型跟编程中叫法不太一样 但意思是一样的。 int > 整数 varchar >字符串 blob > 二进制数据 date > 日期 阅读全文
摘要:
查看多少库存在? show databases; 建库: create database yintao; 查看 show databases; 使用库 use yintao; 建表 create table students( id int unsigned not null auto_increm 阅读全文
摘要:
以库为单位,在库中,以表格为单位,在表中分为行和列 阅读全文