Psyduck - 可達鴨 之 鴨力山大 v0.1

Current Path : home/irplbiz/www/lnselgallery/control/
Upload File :
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");

?>