亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Système de gestion des étudiants en développement PHP parcourant la page des étudiants

Créer un fichier index.php

Ce fichier utilise un mélange de langages HTML et PHP

Le processus est le suivant

5.jpg

Le code est le suivant

<!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>
    <?php
    include ("menu.php");
 ?>
 <h3>瀏覽學生信息</h3>
    <table width="350" border="1" cellspacing="0">
        <tr>
            <th>ID</th>
            <th>姓名</th>
            <th>性別</th>
            <th>年齡</th>
            <th>班級</th>
            <th>操作</th>
        </tr>
        <?php
 //    1. 鏈接數據庫
 header("content-type:text/html;charset=utf8");
 $conn=mysqli_connect("localhost","root","root","study");
        mysqli_set_charset($conn,"utf8");
 //2.執(zhí)行sql
 $sql_select = "select * from stu";
 //3.data 解析
 foreach ( $conn->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['class']}</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>
</body>
</html>

Regardez le code ci-dessus, il y a un bouton de modification et un bouton de suppression dessus, l'étape suivante consiste à exécuter notre fonction Modifier et supprimer



Formation continue
||
<body> <meta charset="UTF-8"> <title>登陸界面</title> <h2>學生管理系統(tǒng)</h2> <a href="index.php"> 瀏覽學生</a> <a href="add.php"> 添加學生</a> <hr> <h3>瀏覽學生信息</h3> <table cellspacing="0" border="1" width="350"> <tbody><tr> <th>ID</th> <th>姓名</th> <th>性別</th> <th>年齡</th> <th>班級</th> <th>操作</th> </tr> <tr><th>3 </th><th>劉奇</th><th>男 </th><th>12 </th><th>五年級</th><td> <a href="edit.php?id=3">修改</a> <a href="javascript:void(0);" onclick="doDel(3)">刪除</a> </td></tr><tr><th>4 </th><th>美女</th><th>女 </th><th>12 </th><th>六年級</th><td> <a href="edit.php?id=4">修改</a> <a href="javascript:void(0);" onclick="doDel(4)">刪除</a> </td></tr> </tbody></table> </body>
soumettreRéinitialiser le code
  • Recommandations de cours
  • Téléchargement du didacticiel
Le didacticiel n'est pas disponible au téléchargement pour le moment. Le staff est actuellement en train de l'organiser. Veuillez prêter plus d'attention à ce cours à l'avenir ~