From 240e32cfac55f727889f231aca5d466ed81d7f54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=88=B4=E4=BD=B3=E8=BE=895?= <1197986048@qq.com> Date: Tue, 24 May 2022 22:39:50 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=94=E8=AE=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...20523-PHP\346\223\215\344\275\234Mysql.md" | 57 +++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 "\346\210\264\344\275\263\350\276\211/20220523-PHP\346\223\215\344\275\234Mysql.md" 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 0000000..33ae75a --- /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']} + + "; +}; +``` -- Gitee