PHP development...LOGIN

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>



Next Section
<!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>
submitReset Code
ChapterCourseware