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

PHP development student management system tutorial code introduction

  • menu.php Main page

  • add.php Add page

  • index.php Browse information page

  • edit.php Modify page

  • action Modify data, delete, add files


Create the menu.php file

This page simply contains the add.php file and the index.php file

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>登陸界面</title>
</head>
<h2>學(xué)生管理系統(tǒng)</h2>
<a href="index.php"> 瀏覽學(xué)生</a>
<a href="add.php"> 添加學(xué)生</a>
<hr>
</body>
</html>



Continuing Learning
||
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>登陸界面</title> </head> <h2>學(xué)生管理系統(tǒng)</h2> <a href="index.php"> 瀏覽學(xué)生</a> <a href="add.php"> 添加學(xué)生</a> <hr> </body> </html>
submitReset Code