xonzhine

Untitled

Nov 25th, 2012
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.01 KB | None | 0 0
  1. <?php
  2.  
  3. // udfyld disse med data fra MySQL
  4. $temp = array();
  5. $temp[1] = '23';
  6. $temp[2] = '25';
  7. $temp[3] = '20';
  8. $temp[4] = '23';
  9.  
  10. ?>
  11. <!DOCTYPE html>
  12. <html>
  13. <head>
  14. <meta http-equiv="refresh" content="5" />
  15. <style>
  16. #pipes {
  17.   background-image: url(pipes.jpg);
  18.   width: 450px;
  19.   height: 338px;
  20.   position: relative;
  21. }
  22. #text1,#text2,#text3,#text4 {
  23.   font-family: Verdana, sans-serif;
  24.   font-size: 19px;
  25.   color: #0f0;
  26.   text-shadow: 1px 1px 0px rgba(0, 0, 0, 1);
  27.   filter: progid:DXImageTransform.Microsoft.dropShadow(color=#000000,offX=1,offY=1);
  28.   position: absolute;
  29. }
  30. #text1 { left: 184px; top: 306px; }
  31. #text2 { left: 221px; top: 286px; }
  32. #text3 { left: 255px; top: 266px; }
  33. #text4 { left: 298px; top: 246px; }
  34. </style>
  35. </head>
  36. <body>
  37.   <div id="pipes">
  38.     <div id="text1">* <?php echo $temp[1]; ?></div>
  39.     <div id="text2">* <?php echo $temp[2]; ?></div>
  40.     <div id="text3">* <?php echo $temp[3]; ?></div>
  41.     <div id="text4">* <?php echo $temp[4]; ?></div>
  42.   </div>
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment