retour sur la page login if(!$user->is_logged_in()) { header('Location: login.php?action=connecte'); exit(); } if(isset($_SESSION['userid'])) { if($_SESSION['userid'] != 1) { header('Location: login.php?action=pasledroit'); exit(); } } //Si le torrent est à supprimer ... if(isset($_GET['delpost'])) { // 1 - on supprime le fichier .torrent dans le répertoire /torrents ... $stmt4 = $db->prepare('SELECT postID, postTorrent, postImage FROM blog_posts_seo WHERE postID = :postID') ; $stmt4->execute(array( ':postID' => $_GET['delpost'] )); $efface = $stmt4->fetch(); $file = $REP_TORRENTS.$efface['postTorrent']; if (file_exists($file)) { unlink($file); } // 2 - ... on supprime aussi l'image de présentation du torrent $postimage = $REP_IMAGES_TORRENTS.$efface['postImage']; if (file_exists($postimage)) { unlink($postimage); } // 3 - on supprime le torrent dans la base $stmt = $db->prepare('DELETE FROM blog_posts_seo WHERE postID = :postID') ; $stmt->execute(array( ':postID' => $_GET['delpost'] )); // 4 - on supprime sa référence de catégorie $stmt1 = $db->prepare('DELETE FROM blog_post_cats WHERE postID = :postID'); $stmt1->execute(array( ':postID' => $_GET['delpost'] )); // 5 - on supprime sa référence de licence $stmt2 = $db->prepare('DELETE FROM blog_post_licences WHERE postID_BPL = :postID_BPL'); $stmt2->execute(array( ':postID_BPL' => $_GET['delpost'] )); // 6 - on supprime ses commentaires s'ils existent /* $stmt22 = $db->prepare('SELECT cid_torrent FROM blog_posts_comments WHERE cid_torrent = :cid_torrent'); $stmt22->execute(array( ':cid_torrent' => $_GET['delpost'] )); $commentaire = $stmt22->fetch(); if(!empty($commentaire)) { $stmtsupcomm = $db->prepare('DELETE FROM blog_posts_comments WHERE cid_torrent = :cid_torrent'); $stmtsupcomm->execute(array( ':cid_torrent' => $_GET['delpost'] )); } */ // 7 - enfin, on met le flag à "1" pour supprimer le fichier dans la tables xbt_files $stmt3 = $db->prepare('UPDATE xbt_files SET flags = :flags WHERE fid = :fid') ; $stmt3->execute(array( ':flags' => '1', ':fid' => $_GET['delpost'] )); header('Location: index.php?action=supprime'); exit; }//fin de if isset $_GET['delpost'] // titre de la page $pagetitle = 'Admin : gestion des torrents'; include_once('../includes/header.php'); ?>
Titre | Date | Uploader | Action |
---|---|---|---|
'.$row['postTitle'].' | '; sscanf($row['postDate'], "%4s-%2s-%2s %2s:%2s:%2s", $annee, $mois, $jour, $heure, $minute, $seconde); echo ''.$jour.'-'.$mois.'-'.$annee.' | '; echo ''.$row['postAuthor'].' | '; ?>'; } } catch(PDOException $e) { echo $e->getMessage(); } ?> |
page_links(); ?>