Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // udfyld disse med data fra MySQL
- $temp = array();
- $temp[1] = '23';
- $temp[2] = '25';
- $temp[3] = '20';
- $temp[4] = '23';
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="refresh" content="5" />
- <style>
- #pipes {
- background-image: url(pipes.jpg);
- width: 450px;
- height: 338px;
- position: relative;
- }
- #text1,#text2,#text3,#text4 {
- font-family: Verdana, sans-serif;
- font-size: 19px;
- color: #0f0;
- text-shadow: 1px 1px 0px rgba(0, 0, 0, 1);
- filter: progid:DXImageTransform.Microsoft.dropShadow(color=#000000,offX=1,offY=1);
- position: absolute;
- }
- #text1 { left: 184px; top: 306px; }
- #text2 { left: 221px; top: 286px; }
- #text3 { left: 255px; top: 266px; }
- #text4 { left: 298px; top: 246px; }
- </style>
- </head>
- <body>
- <div id="pipes">
- <div id="text1">* <?php echo $temp[1]; ?></div>
- <div id="text2">* <?php echo $temp[2]; ?></div>
- <div id="text3">* <?php echo $temp[3]; ?></div>
- <div id="text4">* <?php echo $temp[4]; ?></div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment