<?php
session_start();
if ($_SESSION['login'] != "1")
{
header('Location: mulogin.php');
exit();
}
?>
<html>
<head>
<title>ACP 2 SE - Multi Tool</title>
<link href="main.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor='#000000' text="#FFFFFF">
<?php
include("../lib/config.inc.php");
mysql_connect("$sqlhost", "$sqluser", "$sqlpassword")or die("cannot connect");
mysql_select_db("$sqldb")or die("cannot select DB");
//$_GET['ip'] = $ip;
$sql = "SELECT * FROM bb".$n."_users WHERE password = '$md5' ORDER BY bb".$n."_users.password ASC LIMIT 0, 10000";
$result=mysql_query($sql);
if($result){
echo "<center><h1>Multi Tool - Multi's by Md5:</h1>";
echo "<table border='1' cellpadding='2' cellspacing='2' width='800'>
<tr bgcolor='#C0C0C0'>
<th width='100'>Name:</th>
<th width='100'>Mail:</th>
<th width='150'>Postcount:</th>
<th width='350'>IP:</th>
<th width='350'>pass md5:</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td height='15'>" . $row['username'] . "</td>";
echo "<td height='15'>" . $row['email'] . "</td>";
echo "<td height='15'>" . $row['userposts'] . "</td>";
echo "<td height='15'>" . $row['reg_ipaddress'] . "</a></td>";
echo "<td height='15'>" . $row['password'] . "</td>";
echo "</tr>";
}
echo "<tr><td bgcolor='#c0c0c0'colspan='5'> </td></tr></table></center>";
}
else {
echo "ERROR, Kan de pagina niet tonen <br>Meld dit aan een bevoegde Admin";
}
mysql_close();
?>
<?php
include("../lib/config.inc.php");
mysql_connect("$sqlhost", "$sqluser", "$sqlpassword")or die("cannot connect");
mysql_select_db("$sqldb")or die("cannot select DB");
$sql = 'SELECT * FROM `acp2se` LIMIT 0, 30';
$result=mysql_query($sql);
if($result){
while($row = mysql_fetch_array($result))
{
echo "</p>";
echo "<center>" . $row['Version'] . "</center>";
echo "<center>" . $row['Copy'] . "</center>";
}
echo "<tr><td bgcolor='#c0c0c0'colspan='5'> </td></tr></table></center>";
}
else {
echo "</p><b>Instal first the ACP 2 SE information!</br>© 2007 The Chaser - Kinger7</b>";
}
mysql_close();
?>
</body>
</html>