mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 16:44:24 +00:00
45 lines
1.9 KiB
PHP
45 lines
1.9 KiB
PHP
<?php
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename mainteneceBan.php ##
|
|
## Developed by: aggenkeech ##
|
|
## License: TravianX Project ##
|
|
## Copyright: TravianX (c) 2010-2012. All rights reserved. ##
|
|
## ##
|
|
#################################################################################
|
|
if (!isset($_SESSION)) session_start();
|
|
if($_SESSION['access'] < 9) die("Access Denied: You are not Admin!");
|
|
include_once("../../config.php");
|
|
|
|
mysql_connect(SQL_SERVER, SQL_USER, SQL_PASS);
|
|
mysql_select_db(SQL_DB);
|
|
|
|
$session = $_POST['admid'];
|
|
|
|
$sql = mysql_query("SELECT * FROM ".TB_PREFIX."users WHERE id = ".$session."");
|
|
$access = mysql_fetch_array($sql);
|
|
$sessionaccess = $access['access'];
|
|
|
|
if($sessionaccess != 9) die("<h1><font color=\"red\">Access Denied: You are not Admin!</font></h1>");
|
|
|
|
$sql = "SELECT id FROM ".TB_PREFIX."users ORDER BY ID DESC LIMIT 1";
|
|
$loops = mysql_result(mysql_query($sql), 0);
|
|
|
|
$plusdur = $_POST['plus'] * 86400;
|
|
|
|
for($i = 0; $i < $loops + 1; $i++)
|
|
{
|
|
$query = "SELECT * FROM ".TB_PREFIX."users WHERE id = ".$i."";
|
|
$result = mysql_query($query);
|
|
while($row = mysql_fetch_assoc($result))
|
|
{
|
|
if($row['plus'] < time()) { $plusbefore = time(); $addplus = $plusbefore + $plusdur; } elseif($row['plus'] > time()) { $plusbefore = $row['plus']; $addplus = $plusbefore + $plusdur; }
|
|
mysql_query("UPDATE ".TB_PREFIX."users SET
|
|
plus = '".$addplus."'
|
|
WHERE id = '".$row['id']."'");
|
|
}
|
|
}
|
|
|
|
header("Location: ../../../Admin/admin.php?p=givePlus&g");
|
|
?>
|