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
|
<?
// Page créée le 29/07/2009 10:38:29 par myGenerator 2006
require_once('shop_films_class.php');
$newShop_films = new shop_films();
if(isset($_REQUEST['cmd_submit']))
{
//Choix de l'opération
switch ($_REQUEST['action'])
{
// Cas d'enregistrement
case 'Enregistrer':
$newShop_films->titre = $_REQUEST['txt_titre'];
$newShop_films->Type = $_REQUEST['txt_Type'];
$newShop_films->duree = $_REQUEST['txt_duree'];
$newShop_films->realisateur = $_REQUEST['txt_realisateur'];
$newShop_films->direction_scientifique = $_REQUEST['txt_direction_scientifique'];
$newShop_films->realisation_en_partenariat_avec = $_REQUEST['txt_realisation_en_partenariat_avec'];
$newShop_films->musique = $_REQUEST['txt_musique'];
$newShop_films->parution = $_REQUEST['txt_parution'];
$newShop_films->recompense1 = $_REQUEST['txt_recompense1'];
$newShop_films->recompense2 = $_REQUEST['txt_recompense2'];
$newShop_films->recompense3 = $_REQUEST['txt_recompense3'];
$newShop_films->recompense4 = $_REQUEST['txt_recompense4'];
$newShop_films->recompense5 = $_REQUEST['txt_recompense5'];
$newShop_films->recompence6 = $_REQUEST['txt_recompence6'];
$newShop_films->recompence7 = $_REQUEST['txt_recompence7'];
$newShop_films->resume = $_REQUEST['txt_resume'];
$newShop_films->prix_ttc = $_REQUEST['txt_prix_ttc'];
$newShop_films->setShop_films();
break; |