php學生管理系統_php執行個體

來源:互聯網
上載者:User

本文執行個體為大家分享了php學生管理系統源碼,供大家參考,具體內容如下

功能:
1.添加/刪除/修改
2.資料存放區.
介面分布:
index.php --->主介面
add.php --->stu添加
action ---> sql中add/del/update (處理html表單-->mysql的資料存放區 && 頁面跳轉)
edit.php --->stu修改
menu.php -->首頁

1. index.php

<!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>瀏覽學生資訊</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

<!DOCTYPE html><html lang="en"><head>  <meta charset="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="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

<?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

<!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>修改學生資訊</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

<!DOCTYPE html><html lang="en"><body>  <h2>學生管理系統</h2>  <a href="index.php"> 瀏覽學生</a>  <a href="add.php"> 新增學生</a>  <hr></body></html>

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援雲棲社區。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.