commit d250c1906a9d90e114aca44419236007d9b7c34f Author: jmd Date: Tue Mar 18 12:47:33 2025 +0100 version étudiant 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');
+}