From d250c1906a9d90e114aca44419236007d9b7c34f Mon Sep 17 00:00:00 2001 From: jmd Date: Tue, 18 Mar 2025 12:47:33 +0100 Subject: [PATCH] =?UTF-8?q?version=20=C3=A9tudiant?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- afficheDepartements.php | 65 ++++++++++++++++++++++++++++ afficheEtudiants.php | 92 +++++++++++++++++++++++++++++++++++++++ afficheFormations.php | 96 +++++++++++++++++++++++++++++++++++++++++ afficheMatieres.php | 91 ++++++++++++++++++++++++++++++++++++++ index.php | 21 +++++++++ modifMatiere.php | 75 ++++++++++++++++++++++++++++++++ supprimeMatiere.php | 28 ++++++++++++ updateMatiere.php | 40 +++++++++++++++++ 8 files changed, 508 insertions(+) create mode 100644 afficheDepartements.php create mode 100644 afficheEtudiants.php create mode 100644 afficheFormations.php create mode 100644 afficheMatieres.php create mode 100644 index.php create mode 100644 modifMatiere.php create mode 100644 supprimeMatiere.php create mode 100644 updateMatiere.php diff --git a/afficheDepartements.php b/afficheDepartements.php new file mode 100644 index 0000000..2eb14b2 --- /dev/null +++ b/afficheDepartements.php @@ -0,0 +1,65 @@ +getMessage()); +} +?> + +

Les différents départements :

+ +
+
+Retour à l'accueil +"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "

SUIVI DES VARIABLES POUR DEVELOPPEMENT :

"; +echo "

GLOBALS :

"; +echo '
';
+print_r($GLOBALS);
\ No newline at end of file
diff --git a/afficheEtudiants.php b/afficheEtudiants.php
new file mode 100644
index 0000000..02ab004
--- /dev/null
+++ b/afficheEtudiants.php
@@ -0,0 +1,92 @@
+getMessage()); 
+}
+
+?>
+
+ Quels étudiants afficher ? + + +
+ + + + + + + + + +query($query); + + // Les résultats sont parcourus + while($rowEtudiant = $stmtEtudiants->fetch()) + { + +?> + + + + + + + + +
NomPrénomEmail
+ + +
+
+Retour à l'accueil +"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "

SUIVI DES VARIABLES POUR DEVELOPPEMENT :

"; +echo "

GLOBALS :

"; +echo '
';
+print_r($GLOBALS);
\ No newline at end of file
diff --git a/afficheFormations.php b/afficheFormations.php
new file mode 100644
index 0000000..0553e83
--- /dev/null
+++ b/afficheFormations.php
@@ -0,0 +1,96 @@
+getMessage()); 
+}
+?>
+
+

Formations proposées :

+ +query('SELECT fSigle, fNom FROM formation'); +// Les résultats de la requête sont parcourus un par un, sous forme d'un tableau associatif $row +while (($row = $stmtFormations->fetch())) { +?> + +

Contenu de la formation :

+ + + + + + + + +query($query); + // Les résultats sont parcourus + while($rowContenu = $stmtContenus->fetch()){ +?> + + + + + + + + + + +
MatièreVolume horaireCoefficientDescription de l'enseignement
+ + + + +
+
+Retour à l'accueil +"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "

SUIVI DES VARIABLES POUR DEVELOPPEMENT :

"; +echo "

GLOBALS :

"; +echo '
';
+print_r($GLOBALS);
\ No newline at end of file
diff --git a/afficheMatieres.php b/afficheMatieres.php
new file mode 100644
index 0000000..918225c
--- /dev/null
+++ b/afficheMatieres.php
@@ -0,0 +1,91 @@
+getMessage()); 
+}
+
+// Il est vérifié que le domaine a bien été fourni à la page.
+if($_GET['domain'] != null) {
+    // écriture en amont de la requête 
+    $query = 'SELECT mSigle, mNom, mDescription FROM matiere WHERE mDomaine = :domaine';
+    // Préparation de la requête
+    $stmtMatieres = $dbh->prepare($query);
+    // Association de la variable au paramètre
+    $stmtMatieres->bindParam(":domaine", $_GET['domain']);
+    // Exécution de la requête
+    $stmtMatieres->execute();
+?>
+
+
+    
+        
+        
+        
+        
+    
+
+fetch()) {
+?>
+
+        
+            
+            
+            
+            
+        
+    
+
+
+
IntituléDescription
ModifierSupprimer
+ + +
+
+Retour à l'accueil +"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "

SUIVI DES VARIABLES POUR DEVELOPPEMENT :

"; +echo "

GLOBALS :

"; +echo '
';
+print_r($GLOBALS);
\ No newline at end of file
diff --git a/index.php b/index.php
new file mode 100644
index 0000000..d548a7c
--- /dev/null
+++ b/index.php
@@ -0,0 +1,21 @@
+
+
+
+    
+    
+    Index TD07
+
+
+    

TD07 : Base de données universitaire

+
+Tableau des étudiants inscrits +
+
+Formations disponibles +
+
+Les différents départements + + + + \ No newline at end of file diff --git a/modifMatiere.php b/modifMatiere.php new file mode 100644 index 0000000..268f3f5 --- /dev/null +++ b/modifMatiere.php @@ -0,0 +1,75 @@ +getMessage()); +} + +// Il est vérifié que l'identifiant a bien été fourni. +if($_GET['id'] != null) { + // écriture en amont de la requête + $query = 'SELECT mNom, mDescription FROM matiere WHERE mSigle = :id'; + // Préparation de la requête + # .. A COMPLETER + // Association de la variable au paramètre + # ...A COMPLETER + // Exécution de la requête + $stmtMatieres->execute(); + + // Les résultats de la requête sont parcourus un par un, il n'y en aura logiquement qu'un + while ($row = $stmtMatieres->fetch()) { +?> +
+ + + > + +
+ +
+
+Retour à l'accueil +"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "
"; +echo "

SUIVI DES VARIABLES POUR DEVELOPPEMENT :

"; +echo "

GLOBALS :

"; +echo '
';
+print_r($GLOBALS);
\ No newline at end of file
diff --git a/supprimeMatiere.php b/supprimeMatiere.php
new file mode 100644
index 0000000..632afec
--- /dev/null
+++ b/supprimeMatiere.php
@@ -0,0 +1,28 @@
+getMessage()); 
+}
+
+if ($_GET['id'] != null)
+{
+
+    # COMPLETER AVEC L'ECRITURE D'UNE REQUETE DE SUPPRESSION, SA PREPARATION ET SON EXECUTION
+
+}
+else{
+    header('Location : index.php');
+}
diff --git a/updateMatiere.php b/updateMatiere.php
new file mode 100644
index 0000000..aa3dcd7
--- /dev/null
+++ b/updateMatiere.php
@@ -0,0 +1,40 @@
+getMessage()); 
+}
+
+if ($_GET['sigle'] != null && $_GET['nom'] != null && $_GET['description'] != null)
+{
+        // écriture en amont de la requête 
+    $updateStmt = "UPDATE matiere SET mNom = :nom, mDescription = :description WHERE mSigle = :sigle";
+        // Préparation de la requête
+    $pdoUpdateStmt = $dbh->prepare($updateStmt);
+        // Les variables sont liées à la requête
+    $pdoUpdateStmt->bindParam(":nom", $_GET['nom']);
+    $pdoUpdateStmt->bindParam(":description", $_GET['description']);
+    $pdoUpdateStmt->bindParam(":sigle", $_GET['sigle']);
+        // Exécution de la requête
+    $pdoUpdateStmt->execute();
+        //Fermeture de connexion
+    $pdoUpdateStmt=null;
+    $dbh=null;
+        // Redirection
+    header('location: index.php');
+}
+else{
+    header('Location : index.php');
+}