retour sur la page login if(!$user->is_logged_in()) { header('Location: login.php'); } if(isset($_SESSION['userid'])) { if($_SESSION['userid'] != 1) { header('Location: '.SITEURL); } } //show message from add / edit page if(isset($_GET['delcat'])){ $stmt = $db->prepare('DELETE FROM blog_cats WHERE catID = :catID') ; $stmt->execute(array(':catID' => html($_GET['delcat']))); header('Location: categories.php?action=supprime'); exit; } // titre de la page $pagetitle= 'Admin : gestion des catégories'; require('../includes/header.php'); ?>
La catégorie a été supprimée avec succès.'; } if(isset($_GET['action']) && $_GET['action'] == 'ajoute'){ echo '

La catégorie a été ajoutée avec succès.

'; } ?> query('SELECT catID FROM blog_cats'); //pass number of records to $pages->set_total($stmt->rowCount()); $stmt = $db->query('SELECT catID, catTitle, catSlug FROM blog_cats ORDER BY catTitle ASC '.$pages->get_limit()); while($row = $stmt->fetch()){ echo ''; echo ''; ?> '; } } catch(PDOException $e) { echo $e->getMessage(); } ?>
Titre Action
'.html($row['catTitle']).' |

page_links(); ?>