Guest User

Untitled

a guest
Jan 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.96 KB | None | 0 0
  1. <ul id="menu">
  2. <?php
  3.     echo "Hallo, ".$_SESSION["username"];
  4.     echo " Userpanel:";
  5. ?>
  6.  
  7.  
  8. <a href="#">Market</a>
  9. <?php
  10.  
  11.     echo " <a href=\"market.php\">Marktplatz</a>";
  12.     echo "<a href=\"gssell.php\"> Grundstücke Verkaufen</a>";
  13.     echo "<a href=\"rights.php\"> Rechte Verwalten</a>";
  14.     echo "<a href=\"options.php\"> Optionen</a>";
  15.     ?>
  16.     <style type="text/css">
  17.  
  18. .clear { /* generic container (i.e. div) for floating buttons */
  19.     overflow: hidden;
  20.     width: 100%;
  21. }
  22.  
  23. a.button {
  24.     background: transparent url('images/menu.png') no-repeat scroll top right;
  25.     color: #444;
  26.     display: block;
  27.  
  28.     font: normal 12px arial, sans-serif;
  29.     height: 24px;
  30.     margin-right: 6px;
  31.     padding-right: 18px; /* sliding doors padding */
  32.     text-decoration: none;
  33. }
  34.  
  35. a.button span {
  36.     background: transparent url('bg_button_span.gif') no-repeat;
  37.     display: block;
  38.     line-height: 14px;
  39.     padding: 5px 0 5px 18px;
  40. }
  41.  
  42. </style>
  43.  
  44. </ul>
Add Comment
Please, Sign In to add comment