<?php
require_once("../includes/config.php");
require_once("../includes/functions/func.global.php");
require_once("../includes/functions/loggincheck.php");
require_once('../includes/lang/admin/lang_'.$config['lang'].'.php');
require_once("class.menu.php");
// Connect to database
db_connect($config);
IF(isset($_POST))
{
IF(count($_POST) > 1)
{
IF(isset($_POST['Submit']))
{
$count = 0;
$sql = "DELETE FROM `".$config['db']['pre']."html` ";
foreach ($_POST['list'] as $value)
{
IF($count == 0)
{
$sql.= "WHERE `html_id` = '" . $value . "'";
}
ELSE
{
$sql.= " OR `html_id` = '" . $value . "'";
}
$count++;
}
$sql.= " LIMIT " . count($_POST['list']);
mysql_query($sql);
header("Location: content_edit.php");
exit;
}
}
}
if(isset($_GET['id']))
{
$_POST['list'][] = $_GET['id'];
}
$obj = new Menu();
$nav = $obj->get_js_menu(0,$config,$lang);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>PHPDug Admin</title>
<link rel="stylesheet" type="text/css" href="images/style.css">
<SCRIPT LANGUAGE="JavaScript" SRC="menu/JSCookMenu.js"></SCRIPT>
<LINK REL="stylesheet" HREF="menu/themes/Office/theme.css" TYPE="text/css">
<SCRIPT LANGUAGE="JavaScript" SRC="menu/themes/Office/theme.js"></SCRIPT>
<style type="text/css">
<!--
.style6 {font-size: 14px}
.style7 {
font-size: 12px;
font-weight: bold;
}
-->
</style>
</head>
<body>
<!--Start top-->
<table width="850" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="100%" height="42" align="left" background="images/bg_top.gif"><a href="index.php"><img src="images/logo.gif" width="127" height="37" hspace="10" border="0"></a></td>
</tr>
<tr>
<td><img src="images/dot.gif" width="1" height="1" alt=""></td>
</tr>
</table>
<!--End top-->
<!--Start topmenu-->
<table width="850" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#F0F0F0" height="25" style="padding-left:20px;" id="menu"><SCRIPT language="JavaScript" type="text/javascript">
var myMenu =
// Start the menu
[
<?php echo $nav; ?>
];
// Output the menu
cmDraw ('menu', myMenu, 'hbr', cmThemeOffice, 'ThemeOffice');
</SCRIPT></td>
</tr>
<tr>
<td bgcolor="#333333"><img src="images/dot.gif" width="1" height="1" alt=""></td>
</tr>
</table>
<br>
<!--End topmenu-->
<!--Start heading page-->
<table width="850" cellpadding="0" cellspacing="0" border="0" align="center">
<tr>
<td class="heading"><img src="images/icons/icon_editrule.gif" width="21" height="22" alt="" align="absmiddle" hspace="5">Edit Content </td>
</tr>
<tr>
<td bgcolor="#333333"><img src="images/dot.gif" width="1" height="1" alt=""></td>
</tr>
</table>
<!--End heading page-->
<!--Start form-->
<br>
<table width="850" border="0" align="center" cellpadding="0" cellspacing="0" style="border:1px solid #CCCCCC;">
<tr>
<td align="center" bgcolor="#F6F6F6" style="padding:15px;"><div align="right">
<form action="" method="post" name="f1" id="f1">
<div align="center" class="style6">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><span class="style6"><span class="style7">Are you sure you want to delete the following content pages?</span><br>
</span><br>
<ul>
<?
$count = 0;
$sql = "SELECT html_title,html_id FROM ".$config['db']['pre']."html ";
foreach ($_POST['list'] as $value)
{
IF($count == 0)
{
$sql.= "WHERE html_id='" . $value . "'";
}
ELSE
{
$sql.= " OR html_id='" . $value . "'";
}
$count++;
}
$sql.= " LIMIT " . count($_POST['list']);
$query_result = mysql_query($sql);
while ($info = @mysql_fetch_array($query_result))
{
echo "<li>" . $info['html_title'] . "</li>";
echo "<input type=\"hidden\" name=\"list[]\" id=\"list[]\" value=\"" . $info['html_id'] . "\">";
}
?>
</ul>
<br>
<br>
<div align="center">
<input name="Submit" type="submit" class="button" id="Submit" value="<?php echo $lang['YESSURE']; ?>">
</div></td>
</tr>
</table>
</div>
</form>
</div></td>
</tr>
</table>
<!--End form-->
<br><br>
<!--Start bottom-->
<table width="850" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#333333"><img src="images/dot.gif" width="1" height="1" alt=""></td>
</tr>
<tr>
<td style="padding:15px;" align="center"><span class="copyright">Copyright © 2008 <a href="http://www.kubelabs.com/phpdug/" class="copyright" target="_blank">Kubelabs.com</a> All Rights Reserved.</span></td>
</tr>
</table>
<!--End bottom-->
</body>
</html>