From d7f4ebda3c926fe118cdbe6c63efc6c1af20cc03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E7=91=9E=E9=98=B3?= <2982337961@qq.com> Date: Mon, 6 Jun 2022 02:31:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...hp\347\211\265\346\211\213\347\275\221.md" | 146 ++++++++++++++++++ 1 file changed, 146 insertions(+) create mode 100644 "\346\235\216\347\221\236\351\230\263/20220601-php\347\211\265\346\211\213\347\275\221.md" diff --git "a/\346\235\216\347\221\236\351\230\263/20220601-php\347\211\265\346\211\213\347\275\221.md" "b/\346\235\216\347\221\236\351\230\263/20220601-php\347\211\265\346\211\213\347\275\221.md" new file mode 100644 index 0000000..331b372 --- /dev/null +++ "b/\346\235\216\347\221\236\351\230\263/20220601-php\347\211\265\346\211\213\347\275\221.md" @@ -0,0 +1,146 @@ +```mysql +create database qianshou charset utf8; +use qianshou; +create table user( + id int primary key auto_increment, + username varchar(10) not null, + password varchar(20) not null, + sex varchar(2) not null, + height double not null, + hobby varchar(20) not null, + age int not null, + address varchar(50), + phone int not null, + photo BLOB, + aboutme varchar(50) +) +``` + +```php + +
+ + + +