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 0000000000000000000000000000000000000000..331b3725deb95ec5dbf567bf3d548c639e584cd1 --- /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 + +
+ + + +