From 0470022afba8a97adc5845aee25408cc32088c0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E9=9B=85=E6=A5=A0?= <510873001@qq.com> Date: Wed, 25 May 2022 00:00:13 +0000 Subject: [PATCH 1/5] =?UTF-8?q?update=20=E9=99=88=E9=9B=85=E6=A5=A0/202205?= =?UTF-8?q?24-=E5=AD=A6=E7=94=9F=E4=BF=A1=E6=81=AF=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E7=BD=91=E9=A1=B5=E7=89=88.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...73\347\273\237\347\275\221\351\241\265\347\211\210.md" | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git "a/\351\231\210\351\233\205\346\245\240/20220524-\345\255\246\347\224\237\344\277\241\346\201\257\347\256\241\347\220\206\347\263\273\347\273\237\347\275\221\351\241\265\347\211\210.md" "b/\351\231\210\351\233\205\346\245\240/20220524-\345\255\246\347\224\237\344\277\241\346\201\257\347\256\241\347\220\206\347\263\273\347\273\237\347\275\221\351\241\265\347\211\210.md" index d4650aa..55c140c 100644 --- "a/\351\231\210\351\233\205\346\245\240/20220524-\345\255\246\347\224\237\344\277\241\346\201\257\347\256\241\347\220\206\347\263\273\347\273\237\347\275\221\351\241\265\347\211\210.md" +++ "b/\351\231\210\351\233\205\346\245\240/20220524-\345\255\246\347\224\237\344\277\241\346\201\257\347\256\241\347\220\206\347\263\273\347\273\237\347\275\221\351\241\265\347\211\210.md" @@ -9,13 +9,7 @@ $result = mysqli_query(conn,$sql);//执行上面的语句,返回一个结果集 学生信息管理系统 - +

学生信息管理系统-首页

-- Gitee From 6c202a48a468012036b63c41ed88c311a2473e26 Mon Sep 17 00:00:00 2001 From: unknown <510873001@qq.com> Date: Wed, 25 May 2022 10:29:03 +0800 Subject: [PATCH 2/5] cc --- ...4\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 "\351\231\210\351\233\205\346\245\240/20220525-\344\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" diff --git "a/\351\231\210\351\233\205\346\245\240/20220525-\344\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" "b/\351\231\210\351\233\205\346\245\240/20220525-\344\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" new file mode 100644 index 0000000..e69de29 -- Gitee From 800627567177e5d5967856fcfd397b067e437acc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E9=9B=85=E6=A5=A0?= <510873001@qq.com> Date: Sun, 29 May 2022 15:59:29 +0800 Subject: [PATCH 3/5] cc --- ...5\346\212\200\346\234\257cooki,session.md" | 267 ++++++++++++++++++ 1 file changed, 267 insertions(+) diff --git "a/\351\231\210\351\233\205\346\245\240/20220525-\344\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" "b/\351\231\210\351\233\205\346\245\240/20220525-\344\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" index e69de29..3e340f9 100644 --- "a/\351\231\210\351\233\205\346\245\240/20220525-\344\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" +++ "b/\351\231\210\351\233\205\346\245\240/20220525-\344\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" @@ -0,0 +1,267 @@ + + + + + 学生信息登录 + + +

学生登录界面

+
+ + + + + + + + + + +
用户名:
密码:
+ + + +```php + +登录成功进入首页>"; + +}else{ + die("登录失败!返回"); +} + + +注销"; + +}else{ + echo "你还没有登录!马上去登录"; + +} + + + + + + + + 学生信息管理系统 + + + +

学生信息管理系统-首页

+ + + + + + + +"; +}else { + while ($row = mysqli_fetch_assoc($result)) { + ?> + + + + + + + +
学号名字成绩操作
暂无数据!
修改| + 删除
+添加信息 + + + + + +//conn.php + + + + 添加信息 + + +

添加信息

+ + + + + + + + + + + + +
名字
成绩
    
+ 返回 + +
+ + + + + +//delete.php +返回首页"; +}else{ + echo "修改失败!"; +} + + + + +//edit.php + + + + 修改信息 + + +

修改信息

+
+ + + + + + + + + + + + +
名字
成绩
   
+ 返回 + +
+ + + +//update.php +返回首页"; +} else { + echo "修改失败!"; +} + + + + + +//save.php + +返回首页"; +} else { + echo "添加失败!"; +} +``` + -- Gitee From 3a0b49a33b5cdb0514c9b38bc97d3cda9693bf7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E9=9B=85=E6=A5=A0?= <510873001@qq.com> Date: Sun, 29 May 2022 08:18:19 +0000 Subject: [PATCH 4/5] =?UTF-8?q?update=20=E9=99=88=E9=9B=85=E6=A5=A0/202205?= =?UTF-8?q?25-=E4=BC=9A=E8=AF=9D=E6=8A=80=E6=9C=AFcooki,session.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...74\232\350\257\235\346\212\200\346\234\257cooki,session.md" | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git "a/\351\231\210\351\233\205\346\245\240/20220525-\344\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" "b/\351\231\210\351\233\205\346\245\240/20220525-\344\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" index 3e340f9..21a49d8 100644 --- "a/\351\231\210\351\233\205\346\245\240/20220525-\344\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" +++ "b/\351\231\210\351\233\205\346\245\240/20220525-\344\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" @@ -1,5 +1,4 @@ - - + 学生信息登录 -- Gitee From 9626c3a232f3c9528b3ae003c419cae8f6a5444b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E9=9B=85=E6=A5=A0?= <510873001@qq.com> Date: Sun, 29 May 2022 16:06:16 +0800 Subject: [PATCH 5/5] cc --- ...2\350\257\235\346\212\200\346\234\257cooki,session.md" | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git "a/\351\231\210\351\233\205\346\245\240/20220525-\344\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" "b/\351\231\210\351\233\205\346\245\240/20220525-\344\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" index 21a49d8..b469619 100644 --- "a/\351\231\210\351\233\205\346\245\240/20220525-\344\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" +++ "b/\351\231\210\351\233\205\346\245\240/20220525-\344\274\232\350\257\235\346\212\200\346\234\257cooki,session.md" @@ -1,4 +1,6 @@ - +```html + + 学生信息登录 @@ -19,6 +21,10 @@ +``` + + + ```php -- Gitee