Файл: Website/alliance_stats.php
Строк: 133
<?php
/*** Freedom City | Check RPGBUNNY.COM for more Full RPG Sources | www.rpgbunny.com ***/include "antet.php"; include "func.php";
if (isset($_SESSION["user"][0], $_GET["town"]))
{
if (isset($_POST["col"])) $col=$_POST["col"]; else if (isset($_GET["col"])) $col=$_GET["col"]; else $col="population";
if (isset($col))
{
$alliance_stats=alliance_stats($col);
if (isset($_POST["id"])) {$_POST["id"]=preg_replace("/[^0-9]/","", $_POST["id"]); if ($_POST["id"]<count($alliance_stats)) $id=$_POST["id"]; else msg($lang['noIndex']);}
else if (isset($_GET["id"])) {$_GET["id"]=preg_replace("/[^0-9]/","", $_GET["id"]); if (($_GET["id"]<count($alliance_stats))&&($_GET["id"]>=0)) $id=$_GET["id"]; else if ($_GET["id"]>=count($alliance_stats)) $id=count($alliance_stats)-10; else if ($_GET["id"]<0) $id=0;}
else if (isset($_POST["value"]))
{
$id=0;
for ($i=0; (($i<count($alliance_stats))&&(!$id)); $i++) if ($alliance_stats[$i][1]==$_POST["value"]) $id=$i;
}
else
{
$id=0;
for ($i=0; (($i<count($alliance_stats))&&(!$id)); $i++) if ($alliance_stats[$i][0]==$_SESSION["user"][0]) $id=$i;
}
}
} else {header('Location: login.php'); die();}
?>
<html>
<?php echo "<link rel='stylesheet' type='text/css' href='".$imgs.$fimgs."default.css'>"; ?>
<head>
<title><?php echo $title; ?> - <?php echo $lang['allyStats'] ?></title>
</head>
<body class="q_body">
<link rel="stylesheet" type="text/css" href="layout/css/css/style.css"/>
<div align="left">
<table class="q_table">
<a class='q_link' href='town_stats.php?town=<?php echo $_GET["town"]; ?>'><?php echo $lang['townStats'] ?></a> | <a class='q_link' href='user_stats.php?town=<?php echo $_GET["town"]; ?>'><?php echo $lang['playerStats'] ?></a> | <?php echo $lang['allyStats']?></br></br>
<form name='form1' method='post' action='alliance_stats.php?town=<?php echo $_GET["town"]; ?>'>
<?php echo $lang['viewStatsFor'] ?>
<select class='dropdown' name='col'><option value='population'><?php echo $lang['population'] ?></option><option value='upkeep'><?php echo $lang['upkeep'] ?></option></select>
<input class="button" type='submit' name='button1' value='<?php echo $lang['view'] ?>'>
</form>
<table class="q_table" style="border-collapse: collapse" width="400" border="1">
<tr>
<td><?php echo $lang['nom'] ?></td>
<td><?php echo $lang['ally'] ?></td>
<td><?php if (isset($col)) echo $lang['population']; else echo "-"; ?></td>
</tr>
<?php
if (isset($col))
{
for ($i=$id; (($i<$id+10)&&($i<count($alliance_stats))); $i++) echo "<tr><td>".$i."</td><td><a class='q_link' href='a_view.php?id=".$alliance_stats[$i][0]."'>".$alliance_stats[$i][1]."</a></td><td>".$alliance_stats[$i][2]."</td></tr>";
}
?>
</table>
<form name='form2' method='post' action='alliance_stats.php?town=<?php echo $_GET["town"]; ?>'>
<?php echo $lang['jumpToNo'] ?>
<input class="textbox" type='text' size='5' name='id' value='<?php if (isset($col)) echo $id; ?>'>
<?php echo $lang['for'] ?>
<select class='dropdown' name='col'><option value='population'><?php echo $lang['population'] ?></option><option value='upkeep'><?php echo $lang['upkeep'] ?></option></select>
<input type='submit' class="button" name='button2' value='<?php echo $lang['go'] ?>'>
</form>
<form name='form3' method='post' action='alliance_stats.php?town=<?php echo $_GET["town"]; ?>'>
<?php echo $lang['jumpToAlly'] ?>
<input type='text' class="textbox" size='15' name='value' value='<?php if (isset($_POST["value"])) echo $_POST["value"]; ?>'>
<?php echo $lang['for'] ?>
<select class='dropdown' name='col'><option value='population'><?php echo $lang['population'] ?></option><option value='upkeep'><?php echo $lang['upkeep'] ?></option></select>
<input class="button" type='submit' name='button3' value='<?php echo $lang['go'] ?>'>
</form>
<?php if (isset($id)) echo "<a class='q_link' href='alliance_stats.php?town=".$_GET["town"]."&col=".$col."&id=".($id-10)."'><<</a> | <a class='q_link' href='alliance_stats.php?town=".$_GET["town"]."&col=".$col."&id=".($id+10)."'>>></a>"; ?>
</td>
</tr>
</table>
</div>
</body>
</html>