这里实现一个简单的学生管理系统,供大家参考,具体内容如下
需要建立如下文件:
index.phpmenu.php //菜单栏add.php //添加数据edit.php // 编辑数据action.php // 添加,删除,编辑的实现分别写一下每个文件的代码:
menu.php:
<html><h2>学生信息管理</h2><a href="index.php" rel="external nofollow" >浏览学生</a><a href="add.php" rel="external nofollow" >增加学生</a><hr></html>
index.php
<html> <head> <meta chart="utf-8"> <title>学生信息管理系统</title> </head> <script> function dodel(id){ if(confirm("是否要删除")){ window.location='action.php?action=del&id='+id; } } </script> <body> <center> <?php include("menu.php");?> <h3>浏览学生信息</h3> <table width="600" border="1"> <tr> <th>id</th> <th>姓名</th> <th>姓别</th> <th>年龄</th> <th>班级</th> <th>操作</th> </tr> <?php //1. 连接数据库 try{ $pdo = new pdo("mysql:host=localhost;dbname=myapp;", "root", ""); }catch(pdoexception $e){ die("fail to connect db".$e->getmessage()); } //2. 执行数据库,并解析遍历 $sql = "lect * from ur伤感的英文网名s"; foreach($pdo->query($sql) as $val){ echo "<tr>"; echo "<td>{$val['id']}</td>"; echo "<td>{$val['name']}</td>"; echo "<td>{$val['x']}</td>"; echo "<td>{$val['age']}</td>"; echo "<td>{$val['class']}</td>"; echo "<td> <a href='javascript:dodel({$val['id']})'>删除</a> <a href='edit.php?id={$val['id']}'>修改</a> </td>"; echo "</tr>"; } ?> </table> </center> </body></html>
add.php
<html><head> <meta chart="utf-8"> <title>学生信息管理系统</title></head><body><center> <?php include("menu.php");?> <h3>增加学生信息</h3> <form action="action.php?action=add" method="post"> <table> <tr> <td>姓名</td> <td><input type="text" name="name"/></td> </tr> <tr> <td>姓别</td> <td> <input type="radio" name="x" value="m"/>男 <input type="radio" name="x" value="w"/>女 </td> </tr> <tr> <td>年龄</td> <黄河的谚语;td><input type="text" name="age"/></td> </tr> <tr> <td>班级</td> <td><input type="text" name="class"/></td> </tr> <tr> <td> </td> <td> <input type="submit" value="增加"/> <input type="submit" value="重置"/> </td> </tr> </table> </form></center></body></html>
edit.php
<html><head> <meta chart="utf-8"> <title>内流区和外流区的分界线;学生信息管理系统</title></head><body><center> <?php include("menu.php"); //获取修改信息 //1. 连接数据库 try{ $pdo = new pdo("mysql:host=localhost;dbname=myapp;", "root", ""); }catch(pdoexception $e){ die("fail to connect db".$e->getmessage()); } //2. 拼装sql语句,取出信息 $sql = "lect * from urs where id=".$_get['id']; $stmt = $pdo->query($sql); if($stmt->rowcount() > 0){ $stu = $stmt->fetch(pdo::fetch_assoc); //解析数据 }el{ die("没有修改的信息"); } ?> <h3>修改学生信息</h3> <form action="action.php?action=edit" method="post"> <!-- 以隐藏域的方式添加id --> <input type="hidden" name="id" value="<?php echo $stu['id']; ?>"> <table> <tr> <td>姓名</td> <td><input type="text" name="name" value="<?php echo $st谁娶了多愁善感的你u['name'];?>"/></td> </tr> <tr> <td>姓别</td> <td> <input type="radio" name="x" value="m" <?php echo ($stu['x']== "m")? "checked": ""; ?>/>男 <input type="radio" name="x" value="w" <?php echo ($stu['x']== "w")? "checked": ""; ?>/>女 </td> </tr> <tr> <td>年龄</td> <td><input type="text" name="age" value="<?php echo $stu['age'];?>"/></td> </tr> <tr> <td>班级</td> <td><input type="text" name="class" value="<?php echo $stu['class'];?>"/></td> </tr> <tr> <td> </td> <td> <input type="submit" value="修改"/> <input type="submit" value="重置"/> </td> </tr> </table> </form></center></body></html>
action.php
<?php//1. 连接数据库try{ $pdo = new pdo("mysql:host=localhost;dbname=myapp;", "root", ""); }catch(pdoexception $e){ die("fail to connect db".$e->getmessage());}//2. 通过action的值做相应的操作switch($_get['action']){ ca "add": //增加操作 $name = $_post['name']; $x = $_post['x']; $age = $_post['age']; $class = $_post['class']; $sql = "inrt into urs values (null, '{$name}','{$x}', '{$age}', '{$class}')"; $rw = $pdo->exec($sql); if($rw > 0){ echo "<script>alert('增加成功'); window.location='index.php'</script>"; }el{ echo "<script>alert('增加失败'); window.history.back()</script>"; } break; ca "del": 既灬也灬造句 $id = $_get['id']; $sql = "delete from urs where id={$id}"; $pdo->exec($sql); header("location:index.php"); break; ca "edit": $name = $_post['name']; $x = $_post['x']; $age = $_post['age']; $class = $_post['class']; $id = $_post['id']; $sql = "update urs t name='{$name}',x='{$x}',age={$age},class={$class} where id={$id}"; $rw = $pdo->exec($sql); if($rw > 0){ echo "<script>alert('修改成功'); window.location='index.php'</script>"; }el{ echo "<script>alert('修改失败'); window.history.back()</script>"; } break;}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持www.887551.com。
本文发布于:2023-04-08 15:11:28,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/9862f96d9f0bbddd10c3a73fee83de8a.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PDO实现学生管理系统.doc
本文 PDF 下载地址:PDO实现学生管理系统.pdf
留言与评论(共有 0 条评论) |