mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 16:44:24 +00:00
32 lines
1.5 KiB
PHP
Executable File
32 lines
1.5 KiB
PHP
Executable File
<?php
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename addABTroops.php ##
|
|
## Developed by: ronix ##
|
|
## License: TravianZ Project ##
|
|
## Copyright: TravianZ (c) 2010-2014. All rights reserved. ##
|
|
## ##
|
|
#################################################################################
|
|
|
|
if(!isset($_SESSION)) session_start();
|
|
if($_SESSION['access'] < 9) die("Access Denied: You are not Admin!");
|
|
include_once("../../Database.php");
|
|
|
|
$id = (int) $_POST['id'];
|
|
$village = $database->getVillage($id);
|
|
$user = $database->getUserArray($village['owner'],1);
|
|
$atech="";
|
|
$btech="";
|
|
for($i=1; $i<9; $i++) {
|
|
$atech.="a".$i."=".$database->escape($_POST['a'.$i]).", ";
|
|
$btech.="b".$i."=".$database->escape($_POST['b'.$i]).(($i > 7) ? "" : ", ");
|
|
}
|
|
|
|
$q = "UPDATE ".TB_PREFIX."abdata SET ".$atech.$btech." WHERE vref = $id";
|
|
$database->query($q);
|
|
$database->query("Insert into ".TB_PREFIX."admin_log values (0,".(int) $_SESSION['id'].",'Changed troop anmount in village <a href=\'admin.php?p=village&did=$id\'>$id</a> ',".time().")");
|
|
|
|
header("Location: ../../../Admin/admin.php?p=village&did=".$id."&ab");
|
|
|
|
?>
|