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>