mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-29 00:54:31 +00:00
25 lines
573 B
Smarty
25 lines
573 B
Smarty
<div id="textmenu">
|
|
<a href="build.php?id=<?php echo $id; ?>" <?php
|
|
|
|
if(!isset($_GET['t']) && $_GET['id'] == $id) {
|
|
echo "class=\"selected\"";
|
|
}
|
|
|
|
?>
|
|
">Own artefacts</a>
|
|
|
|
| <a href="build.php?id=<?php echo $id; ?>&t=2" <?php
|
|
|
|
if(isset($_GET['t']) && $_GET['t'] == 2) {
|
|
echo "class=\"selected\"";
|
|
}
|
|
|
|
?>">Small artefacts</a>
|
|
|
|
| <a href="build.php?id=<?php echo $id; ?>&t=3" <?php
|
|
|
|
if(isset($_GET['t']) && $_GET['t'] == 3) {
|
|
echo "class=\"selected\"";
|
|
}
|
|
?>">Large artefacts</a>
|
|
</div> |