国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

PHP ?? ?? ?? ??? ??

??? ?? ???? ???? ??, ??, ?? ? ???? ????. ? ????? ?? ??? ?? ?? ???? ??? ? ????.


Tips: ? ??????? ??? ??? ?????. ??? CSS ???? ?? ?? ???? ?????. ??? ???? ??? ?? CSS ???? ?? ???? ???? ? ???? ?? ? ????


?? ?? ?? ???? ?? ???? ???? ???????. ?? ?????? ?? ?? ??? ????

8.jpg

'?? ??' ??? ???? ??? ?? ?? ??? ???? ???? ????

2.jpg


'?? ?? ????'? ?????. , ?? ???? ?????. ???? ?? ????

7.jpg

??


menu.php

: ?? ???(index.php ? add.php ?? ??)

index.php

: ?? ???? ?? ???

add.php

: ?? ?? ?? ???

edit.php

: ?? ???

action.php

: ??? ?? PHP ??? ????? ??? ? ??? ?? ?????. , ??? PHP?? ?? ? ?? ??

??? ???? ?? ?? PHP ??? ??? ????? ??????? ??? ???? ????

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