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>学生管理系统</h2>
<a href="index.php"> 浏览学生</a>
<a href="add.php"> 添加学生</a>
<hr>
</body>
</html>



Continuing Learning
||
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<h2></h2>
<a href="index.php"> </a>
<a href="add.php"> </a>
<hr>
</body>
</html>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
submitReset Code
图片放大关闭