📄 clanshop-land.php
字号:
<?php /* ------------------------- */
include("_include-jail.php");
/* ------------------------- */ ?>
<html>
<head>
<title>[( Elite Avengers )]</title>
<link rel="stylesheet" type="text/css" href="css-v1.css">
</head>
<body>
<table width=100%>
<?PHP
$dbres = mysql_query("SELECT * FROM `[clans]` WHERE `name`='{$data->clan}'");
$clan = mysql_fetch_object($dbres);
if (isset($_GET['x'])) {
if($_GET['x'] == "koopland") {
$genoegcash = "30000";
if($genoegcash <= $clan->cash) {
$insert = "UPDATE `[clans]` set `land`=`land`+100, `cash`=`cash`-30000 WHERE `name`='{$clan->name}'";
$insert_now = mysql_query($insert) or die("FOUT in query ");
echo "<a style=\"COLOR: #FFFFFF\"<b>You bought 100 m<sup>2</sup> land.</b>";
}
else {
echo "<a style=\"COLOR: #FFFFFF\"<b>* You haven't got enough money to buy land.</a>";
}
}
}
?>
<html>
<table align=center width=100%>
<tr><td class=subTitle><font color="white"><b>Buy Land</b></td></tr>
<tr><td class=mainTxt>
<table height="90" cellSpacing="0" cellPadding="0" width="100%">
<tr>
<td height="70"><font color="white"> Buildground<br><img src="http://www.nieuwbouw-woningen.nl/Infocorner/column/bouwgrond.JPG" width="190" height="154">
</td>
<td vAlign="top" align="right" height="70">
<table height="100%" width="100%">
<tr>
<td vAlign="top"> </td>
</tr>
<tr>
<td vAlign="bottom">
<table width="100%">
<tr>
<td width="75"><font color="white">Land:</td>
<td><font color="white">100 m<sup>2</sup></td>
</tr>
<tr>
<td vAlign="top" width="75"><font color="white">Omschrijving:</td>
<td><font color="white">You'll need land to buy crew-buildings.</td>
</tr>
<tr>
<td width="75"><font color="white">Cost:</td>
<td><font color="white">$30000</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="19"> </td>
<td align="right" height="19">
<?PHP
$genoegcash = "30000";
if($genoegcash <= $data->cash) {
echo "<a style=\"COLOR: #FFFFFF\" href=\"clanshop-land.php?x=koopland\">
<b>Buy</b></a>";
}
else {
echo "<a style=\"COLOR: #FFFFFF\" href=\"clanshop-land.php?x=koopland\">
<b>Buy</b></a>";
}
?>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -