diff --git "a/\346\226\271\347\220\274/20220605-php\347\211\265\346\211\213\347\275\221\344\275\234\344\270\232.md" "b/\346\226\271\347\220\274/20220605-php\347\211\265\346\211\213\347\275\221\344\275\234\344\270\232.md" new file mode 100644 index 0000000000000000000000000000000000000000..eb544d1dda3b1485775cb9848feba576e25e55c7 --- /dev/null +++ "b/\346\226\271\347\220\274/20220605-php\347\211\265\346\211\213\347\275\221\344\275\234\344\270\232.md" @@ -0,0 +1,172 @@ +```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(30) not null, + age int not null, + address varchar(30), + phone int not null, + photo BLOB, + aboutme varchar(30) +) +``` + +```php +//conn.php + + + + +
+ + + +