Advertisement
Guest User

Untitled

a guest
Dec 27th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.33 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title></title>
  4.     <style type="text/css">
  5.         body{overflow:hidden;}.button{margin-top:0px;left:0px;top:0px;-moz-box-shadow:inset 0 1px 0 0 #fff;-webkit-box-shadow:inset 0 1px 0 0 #fff;box-shadow:inset 0 1px 0 0 #fff;background-color:#ededed;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;border:1px solid #dcdcdc;display:inline-block;color:#777;font-family:arial;font-weight:700;text-decoration:none;text-shadow:1px 1px 0 #fff;height:20px;width:50px}.button:hover{background-color:#e8e8e8}.button:active{position:relative;top:1px}.votes{margin-top:0px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;height:20px;width:45px;float:right;background-color:#FAFAFA;border:1px solid #D4D4D4;font-family:Helvetica,Arial;font-size:15px;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none}.parent{width:110px;margin-top:0px;}
  6.     </style>
  7. </head>
  8. <body>
  9.     <?php
  10.         $id = $_GET['id'];
  11.         if(!is_numeric($id)) {
  12.             die("Ung&uuml;ltige id");
  13.         }
  14.         $votes = file_get_contents("http://minecraft-server.eu/votes.php?server=" . $id);
  15.     ?>
  16.     <div class="parent">
  17.         <button class="button" onclick="window.location='http://www.minecraft-server.eu/index.php?go=servervote&id=<?php echo $id;?>';">Voten</button>
  18.         <div class="votes">&nbsp;<?php echo $votes;?>&nbsp;</div>
  19.     </div>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement