H69UNtblNBNpha2dtB1Odn8qYp1Qk5NK2gi7yfceofo9N
/
home
/
ymswebso
/
public_html
/
bamslove
/
sitecms
/
process-delete
/
Nama File / Folder
Size
Action
delete-blog.php
0.913KB
Hapus
Edit
Rename
delete-page.php
3.164KB
Hapus
Edit
Rename
<=Back
<?php ob_start(); ?> <?php include("../includes/session.php"); ?> <?php include("../includes/login-verify.php"); ?> <?php include("../includes/printmsg.php"); ?> <?php include("../includes/extra-vars.php"); ?> <?php include("../includes/connection.php"); ?> <?php $action = $_REQUEST['action']; $id = $_REQUEST['id']; /////// fetching the filename to delete /////// $result_file = mysql_query("select * from blog_posts where id = '$id'"); while($row_file = mysql_fetch_array($result_file)) { $blog_img = $row_file['blog_img']; $blog_img_path = "../../uploaded/image/".$blog_img; } ///////// deleting images from main pages //////// !unlink($blog_img_path); $sql = ("delete from blog_posts where id = '$id'"); $result = mysql_query($sql); $_SESSION['msg'] = '<div class="alert alert-success text-center"><strong>Blog article has been deleted successfully.</strong></div>'; header("location: ../manage-blog"); ?> <?php ob_flush(); ?>
Liking