1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
<!--Supprimer une conférence-->
<html>
<body>
<?php
require("connect1.php");
#$IdConf=$_GET["IdConf"];
$modifConf=mysql_query("select * from conference")or die ("requete vide:".mysql_error());
#$selectIdUniv=mysql_query("select * from universite")or die ("requete vide:".mysql_error());
$conf=mysql_fetch_object($modifConf);
echo"<table border=0 >";
echo"<form action='sup_conf.php' method=POST>";
echo"<tr> <td width=15%><td><input type='hidden' name='intitule'></tr><br>";
echo"<tr> <td ><td><input type='hidden' name='idConf' value='$conf->IdConf'></tr>";
echo"<tr> <td ><td><input type='hidden' name='dateSoumission' value='$conf->DateSoumission'></tr>";
echo"<tr> <td ><td><input type='hidden' value='$conf->DateAcceptation' name='dateAcceptation'></tr>";
echo"<tr> <td ><td><input type='hidden' name='dateFin' value='$conf->DateFin'><td></tr>";
echo"<tr> <td ><td><input type='hidden' name='droitInsc' value='$conf->DroitInsc'></tr>";
echo"<tr> <td ><td><input type='hidden' value='$conf->NbArtMax' name='nbArtMax'></tr>";
echo"<tr> <td ><td><input type='hidden' name='idUniv' value='$conf->IdUniv'></tr>";
echo"<tr> <td >Sélectionner la conférence <td><select name='Intitule'>";
while($conf=mysql_fetch_object($modifConf)){
echo"<option value='$conf->Intitule' >$conf->Intitule</option>";
}
echo" </select></tr>";
echo"</table>";
echo"<input type='submit' name='supprimer' value='Supprimer'><input type='reset' value='Réinitialiser'>";
echo"</form>";
?>
</body>
</html> |