You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
498 B
19 lines
498 B
<?php
|
|
|
|
require_once('../BDD/SqliteDb.php');
|
|
require_once('../controleur/Controleur.php');
|
|
$db = new SqliteDb('o');
|
|
|
|
if(isset($_GET['modif'])){
|
|
$db->supprimerQCM ($_GET['numQuestion']);
|
|
}
|
|
|
|
|
|
|
|
$isAdd = $db->ajouterQCM($_GET['numQuestion'],$_GET['consigne'],$_GET['choix1'],$_GET['choix2'],$_GET['choix3'], $_GET['reponse']);
|
|
if(!$isAdd){
|
|
echo '<strong>ERREUR : le numéro de question existe déjà dans la bdd</strong>';
|
|
}
|
|
else echo '<strong>AJOUT QCM avec succès</strong>';
|
|
|