diff --git "a/\346\235\250\351\221\253\344\273\252/20220605-php\347\211\265\346\211\213\347\275\221.md" "b/\346\235\250\351\221\253\344\273\252/20220605-php\347\211\265\346\211\213\347\275\221.md" new file mode 100644 index 0000000000000000000000000000000000000000..98913eefa9cf3b24e5fd311166f71ae98492d864 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20220605-php\347\211\265\346\211\213\347\275\221.md" @@ -0,0 +1,168 @@ +``` 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 + + + +
+ + + +