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