diff --git "a/\346\210\264\344\275\263\350\276\211/20220523-PHP\346\223\215\344\275\234Mysql.md" "b/\346\210\264\344\275\263\350\276\211/20220523-PHP\346\223\215\344\275\234Mysql.md" new file mode 100644 index 0000000000000000000000000000000000000000..33ae75a9723e83e3406e58fc3c3f2e474e856461 --- /dev/null +++ "b/\346\210\264\344\275\263\350\276\211/20220523-PHP\346\223\215\344\275\234Mysql.md" @@ -0,0 +1,57 @@ +# 作业 + +```PHP+HTML + + + 学号 + 名称 + 成绩 + +"; +while($arr=mysqli_fetch_assoc($result)){ + echo " + + {$arr['id']} + {$arr['name']} + {$arr['score']} + + "; +}; +```