Ce dépôt a été archivé le 2024-08-14. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
HHH-www/classaddcomprojet.php
2016-05-08 12:22:29 +02:00

19 lignes
668 o
PHP

<?php
require 'classes/CommentProjet.php';
if(isset($_POST["fd_idprojet"]) && !empty($_POST["fd_idprojet"]) && isset($_POST["fd_name"]) && !empty($_POST["fd_name"]) && isset($_POST["fd_content"]) && !empty($_POST["fd_content"]) && empty($_POST["fd_dumbot"])){
$idprojet=$_POST["fd_idprojet"];
$nom=$_POST["fd_name"];
$contenu=$_POST["fd_content"];
echo "idprojet : ".$idprojet."<br/>";
echo "nom : ".$nom."<br/>";
echo "contenu : ".$contenu;
//Création d'un objet CommentProjet
$postCom = new CommentProjet();
//On appelle la méthode qui va enregistrer le commmentaire dans la bdd
$postCom->ajouterCom($nom, $contenu, $idprojet);
}
?>