Current Path : home/irplbiz/www/lnselgallery/control/ |
Current File : /home/irplbiz/www/lnselgallery/control/gallery-delete.php |
<?php ob_start(); session_start(); if(!isset($_SESSION['username'])) { header("location: index.php?login=expired"); } include('includes/db_connect.php'); $sql = "DELETE FROM `ln_tbl_gallery` WHERE `id` = '".$_REQUEST['id']."'"; mysql_query($sql); header("location: gallery-list.php"); ?>