finish hero_full.php

This commit is contained in:
yi12345
2013-06-16 10:38:34 +03:00
commit 98e94af807
2800 changed files with 115529 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<div id="textmenu">
<a href="nachrichten.php" <?php if(!isset($_GET['t'])) { echo "class=\"selected\""; } ?>>Inbox</a>
| <a href="nachrichten.php?t=1" <?php if(isset($_GET['t']) && $_GET['t'] == 1) { echo "class=\"selected\""; } ?> >Write</a>
| <a href="nachrichten.php?t=2" <?php if(isset($_GET['t']) && $_GET['t'] == 2) { echo "class=\"selected\""; } ?> >Sent</a>
<?php if($session->plus) {
echo " | <a href=\"nachrichten.php?t=3\"";
if(isset($_GET['t']) && $_GET['t'] == 3) { echo "class=\"selected\""; }
echo ">Archive</a> | <a href=\"nachrichten.php?t=4\"";
if(isset($_GET['t']) && $_GET['t'] == 4) { echo "class=\"selected\""; }
echo ">Notes</a>";
}
?>
</div>