<?php if ($access != 'VALID') { header('location:../../index.php'); } if (!isset($_SESSION['admin'])) { header('location:../../index.php'); } include_once 'model/blog/fonctions_blog.php'; $retour = ""; if (isset($_GET['a'])) { if (article_delete($_GET['a'])) { $retour = "L'article a bien été supprimé"; } else { $retour = "Il y a eu une erreur lors de la suppression de l'article, veuillez réessayer"; } } $articles = afficher_articles(); $title = 'Gestion des articles'; include_once 'view/blog/articles.php';
<?php if ($access != 'VALID') { header('location:../../index.php'); } include_once 'model/blog/fonctions_blog.php'; include_once 'model/shop/fonctions_boutique.php'; $retour = ""; $article = afficher_articles(1); $produits = afficher_4produits("NULL"); $categoriesa = afficher_categories(); $categoriesp = afficher_categories_shop(); $marques = afficher_marques(); $title = 'Accueil'; include_once 'view/home/accueil.php';