<?php require_once __DIR__ . "/../class/Produit.class.php"; if (isset($_POST)) { $Produit = new Produit(); $Produit->setCode($_POST['code']); $Produit->setTitre($_POST['titre']); $Produit->setAuteur($_POST['auteur']); $Produit->setEditeur($_POST['editeur']); $Produit->setEdition($_POST['edition']); $Produit->setType($_POST['type']); echo $Produit->updateInfo(); }
public function validLot() { $query = getDb()->prepare("UPDATE lots SET fait = 1, achesp = ?, achech = ?, vente = ?, purchaser = ? WHERE id = ?"); $query->execute(array($this->achatesplot, $this->achatechlot, $this->ventelot, $_SESSION['username'], $this->lotID)); $query = getDb()->prepare("UPDATE produits_achetes SET validated = 1 WHERE lotID = ?"); $query->execute(array($this->lotID)); $query = getDb()->prepare("SELECT * FROM produits_achetes WHERE lotID = ?"); $query->execute(array($this->lotID)); while ($row = $query->fetch()) { $Produit = new Produit(); $Produit->setTitre($row['titre']); $Produit->setAuteur($row['auteur']); $Produit->setEditeur($row['editeur']); $Produit->setCode($row['code']); $Produit->setType($row['type']); $Produit->updateInfo(); } }