From 0de71fd059303471cead4b0b024000c4675a2f00 Mon Sep 17 00:00:00 2001 From: xushiheng <2363492796@qq.com> Date: Sun, 5 Jun 2022 23:10:45 +0800 Subject: [PATCH] 2 --- ...21\347\253\231\345\256\236\344\276\213.md" | 265 ++++++++++++++++++ 1 file changed, 265 insertions(+) create mode 100644 "\345\276\220\350\257\227\346\201\222/202206001-php\347\275\221\347\253\231\345\256\236\344\276\213.md" diff --git "a/\345\276\220\350\257\227\346\201\222/202206001-php\347\275\221\347\253\231\345\256\236\344\276\213.md" "b/\345\276\220\350\257\227\346\201\222/202206001-php\347\275\221\347\253\231\345\256\236\344\276\213.md" new file mode 100644 index 0000000..c006020 --- /dev/null +++ "b/\345\276\220\350\257\227\346\201\222/202206001-php\347\275\221\347\253\231\345\256\236\344\276\213.md" @@ -0,0 +1,265 @@ +```sql +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(100) not null, + age int not null, + address varchar(100), + phone int not null, + photo BLOB, + aboutme varchar(100) +) +``` + +```php +// conn.php + + + + +
+ + + +