stu 学生管理
跳至
[1]
[2]
[3]
[4]
[5]
[全屏预览]
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>学生信息管理</title> <script> function doDel(id) { if(confirm('确认删除?')) { window.location='action.php?action=del&id='+id; } } </script> </head> <body> <center> <?php include ("menu.php"); ?> <h3 id="浏览学生信息">浏览学生信息</h3> <table width="500" border="1"> <tr> <th>ID</th> <th>姓名</th> <th>性别</th> <th>年龄</th> <th>班级</th> <th>操作</th> </tr> <?php // 1. 链接数据库 try{ $pdo = new PDO("uri:mysqlPdo.ini","root","1"); }catch (PDOException $e) { die('connection failed'.$e->getMessage()); } //2.执行sql $sql_select = "select * from stu"; //3.data 解析 foreach ( $pdo->query($sql_select) as $row) { echo "<tr>"; echo "<th>{$row['id']} </th>"; echo "<th>{$row['name']}</th>"; echo "<th>{$row['sex']} </th>"; echo "<th>{$row['age']} </th>"; echo "<th>{$row['classid']}</th>"; echo "<td> <a href='edit.php?id={$row['id']}'>修改</a> <a href='javascript:void(0);' onclick='doDel({$row['id']})'>删除</a> </td>"; echo "</tr>"; } ?> </table> </center> </body> </html>
로그인 후 복사
2. [文件] add.php ~ 1KB 下载(1) 跳至 [1] [2] [3] [4] [5] [全屏预览]
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>学生管理系统</title> </head> <body> <center> <?php include ('menu.php'); ?> <h3 id="增加学生信息">增加学生信息</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="text" name="age"></td> </tr> <tr> <td>性别</td> <td><input type="radio" name="sex" value="男">男</td> <td><input type="radio" name="sex" value="女">女</td> </tr> <tr> <td>班级</td> <td><input type="text" name="classid"></td> </tr> <tr> <!-- <td> </td>--> <td><a href="index.php">返回</td> <td><input type="submit" value="添加"></td> <td><input type="reset" value="重置"></td> </tr> </table> </form> </center> </body> </html>
로그인 후 복사
3. [文件] action.php ~ 2KB 下载(1) 跳至 [1] [2] [3] [4] [5] [全屏预览]
<?php /** * Created by PhpStorm. * User: hyh * Date: 16-7-7 * Time: 下午9:37 */ //1. 链接数据库 try{ $pdo = new PDO("uri:mysqlPdo.ini","root","1"); }catch (PDOException $e) { // echo 'Connection failed: ' . $e->getMessage(); die('connection failed'.$e->getMessage()); } //2.action 的值做对操作 switch ($_GET['action']){ case 'add'://add $name = $_POST['name']; $sex = $_POST['sex']; $age = $_POST['age']; $classid = $_POST['classid']; $sql = "insert into stu (name, sex, age, classid) values ('{$name}', '{$sex}','{$age}','{$classid}')"; $rw = $pdo->exec($sql); if ($rw > 0){ echo "<script>alter('添加成功');</script>"; }else{ echo "<script>alter('添加失败');</script>"; } header('Location: index.php'); break; case 'del'://get $id = $_GET['id']; $sql = "delete from stu where id={$id}"; $rw = $pdo->exec($sql); if ($rw > 0){ echo "<script>alter('删除成功');</script>"; }else{ echo "<script>alter('删除失败');</script>"; } header('Location: index.php'); break; case 'edit'://post $id = $_POST['id']; $name = $_POST['name']; $age = $_POST['age']; $classid = $_POST['classid']; $sex = $_POST['sex']; // echo $id, $age, $age, $name; $sql = "update stu set name='{$name}', age={$age},sex='{$sex}',classid={$classid} where id={$id};"; // $sql = "update myapp.stu set name='jike',sex='女', age=24,classid=44 where id=17"; print $sql; $rw = $pdo->exec($sql); if ($rw > 0){ echo "<script>alter('更新成功');</script>"; }else{ echo "<script>alter('更新失败');</script>"; } header('Location: index.php'); break; default: header('Location: index.php'); break; }
로그인 후 복사
4. [文件] edit.php ~ 2KB 下载(1) 跳至 [1] [2] [3] [4] [5] [全屏预览]
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>学生管理系统</title> </head> <body> <center> <?php include ('menu.php'); //1. 链接数据库 try{ $pdo = new PDO("uri:mysqlPdo.ini","root","1"); }catch (PDOException $e) { die('connection failed'.$e->getMessage()); } //2.执行sql $sql_select = "select * from stu where id={$_GET['id']}"; $stmt = $pdo->query($sql_select); if ($stmt->rowCount() >0) { $stu = $stmt->fetch(PDO::FETCH_ASSOC); // 解析数据 }else{ die("no have this id:{$_GET['id']}"); } ?> <h3 id="修改学生信息">修改学生信息</h3> <form action="action.php?action=edit" method="post"> <input type="hidden" name="id" value="<?php echo $stu['id'];?>"> <table> <tr> <td>姓名</td> <td><input type="text" name="name" value="<?php echo $stu['name'];?>"></td> </tr> <tr> <td>年龄</td> <td><input type="text" name="age" value="<?php echo $stu['age'];?>"></td> </tr> <tr> <td>性别</td> <td> <input type="radio" name="sex" value="男" <?php echo ($stu['sex'] == "男")? "checked":"";?> >男 </td> <td> <input type="radio" name="sex" value="女" <?php echo ($stu['sex'] == "女")? "checked":"";?> >女 </td> </tr> <tr> <td>班级</td> <td><input type="text" name="classid" value="<?php echo $stu['classid']?>"></td> </tr> <tr> <td> </td> <td><input type="submit" value="更新"></td> <td><input type="reset" value="重置"></td> </tr> </table> </form> </center> <?php ?> </body> </html>
로그인 후 복사
5. [文件] menu.php ~ 179B 下载(1) 跳至 [1] [2] [3] [4] [5] [全屏预览]
<!DOCTYPE html> <html lang="en"> <body> <h2 id="学生管理系统">学生管理系统</h2> <a href="index.php"> 浏览学生</a> <a href="add.php"> 添加学生</a> <hr> </body> </html>
로그인 후 복사
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사
R.E.P.O. 에너지 결정과 그들이하는 일 (노란색 크리스탈)
3 몇 주 전
By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 최고의 그래픽 설정
3 몇 주 전
By 尊渡假赌尊渡假赌尊渡假赌
어 ass 신 크리드 그림자 : 조개 수수께끼 솔루션
2 몇 주 전
By DDD
R.E.P.O. 아무도들을 수없는 경우 오디오를 수정하는 방법
3 몇 주 전
By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25 : Myrise에서 모든 것을 잠금 해제하는 방법
3 몇 주 전
By 尊渡假赌尊渡假赌尊渡假赌

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제
Gmail 이메일의 로그인 입구는 어디에 있나요?
7467
15


Cakephp 튜토리얼
1376
52


Steam의 계정 이름 형식은 무엇입니까?
77
11


Win11 활성화 키 영구
48
19


NYT 연결 힌트와 답변
19
20

