本文整理汇总了PHP中Support::insertion_support方法的典型用法代码示例。如果您正苦于以下问题:PHP Support::insertion_support方法的具体用法?PHP Support::insertion_support怎么用?PHP Support::insertion_support使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Support
的用法示例。
在下文中一共展示了Support::insertion_support方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: catch
/// echo " je suis arrive jusqu'a ici dans la boucle 1 </br>";
}
} catch (PDOException $e) {
}
// recuperer les id de sous theme
$id_soustheme = $_POST['theme'];
echo $id_soustheme;
$titre = $_POST['titre_support'];
$nom = $_POST['nom_support'];
$image = null;
if (isset($_POST['image_support'])) {
$image = $_POST['image_support'];
} else {
$image = "vide";
}
$lien = $_POST['lien'];
$description = $_POST['description'];
$type = $_POST['type_support'];
if (!isset($_SESSION['email_user'])) {
header('Location:authentification.html');
} else {
$support = new Support();
$a = 1;
$support->insertion_support($titre, $nom, $a, $id_soustheme, $type, $lien, $description, $image, $id_categorie, $id_utilisateur);
echo '<script type="text/javascript">
alert("l\'insertion est pas reussi car le mot de passe est confirmer ");
</script>';
header('Location: ../espace_membres.php');
}