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['dellicence'])){ $stmt = $db->prepare('DELETE FROM blog_licences WHERE licenceID = :licenceID') ; $stmt->execute(array(':licenceID' => $_GET['dellicence'])); header('Location: licences.php?action=supprime'); exit; } // titre de la page $pagetitle= 'Admin : gestion des licences'; require('../includes/header.php'); ?>
La licence a été supprimée avec succès.'; } if(isset($_GET['action']) && $_GET['action'] == 'ajoute'){ echo '

La licence a été ajoutée avec succès.

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

page_links(); ?>