Introduction au...LOGIN

Introduction au code du didacticiel du système de gestion des étudiants en développement PHP

  • menu.php Page principale

  • add.php Ajouter une page

  • index.php Parcourir la page d'informations

  • edit.php Modifier la page

  • action Modifier les données, supprimer, ajouter des fichiers


Créer le fichier menu.php

Cette page contient simplement le fichier add.php et le fichier index.php

<!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>



section suivante
<!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>
soumettreRéinitialiser le code
chapitredidacticiel