';
echo $_POST['chapitre'].'
';
echo $_POST['lienDL'].'
';
echo $_POST['traduc'].'
';
echo $_POST['check'].'
';
echo $_POST['edition'].'
';
echo $_POST['qcheck'].'
';
echo $_POST['idDow'].'
';
//vérification de l'existance des variables
if(isset($_POST['titre']) and isset($_POST['chapitre']) and isset($_POST['lienDL']) and isset($_POST['traduc']) and
isset($_POST['check']) and isset($_POST['edition']) and isset($_POST['qcheck']) and isset($_POST['idDow']))
{
echo 'Passage dans la boucle if.
';
//création d'un objet ProjetManager
$modDow = new ProjetManager();
//appel de la fonction de modification de release
$modDow->modDownload($_POST['idDow'], $_POST['titre'], $_POST['chapitre'], $_POST['lienDL'], $_POST['traduc'],
$_POST['check'], $_POST['edition'], $_POST['qcheck']);
echo 'Mise a jour terminee.';
}
?>