File "effacement_plongee.php"
Full Path: /home/asmplong/www/ancien-site-2019/inscriptions/effacement_plongee.php
File size: 799 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// script permettant d enregistrer le planning de plongee
include('parametres.php');
include('connexion_bdd.php');
continuer effacement des plongee
$liste_niveau= $_POST['liste_niveau'];
$liste_theme_plongee= $_POST['liste_theme_plongee'];
$date_de_la_plongee = $_POST['date_de_la_plongee'];
$liste_nom_DP=$_POST['liste_nom_DP'];
$query ="INSERT INTO `planification _des_plongees` (date,theme_plongee,niveau_minimum,nom_du_DP) VALUES(";
$query=$query."'".$date_de_la_plongee."',"."'".$liste_theme_plongee."','".$liste_niveau."','".$liste_nom_DP."')";
echo "<br><center>Enregsitrement en cours...Veuillez patienter quelques secondes<center><br>";
$result=mysql_query($query) or die(mysql_error());
header("Refresh: 2; URL=./espace_administrateur.php" );
?>