Advertisement
NettleSoup

Untitled

Mar 10th, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.44 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  2. "http://www.w3.org/TR/html4/strict.dtd">
  3. <html>
  4. <head>
  5.  
  6. <meta http-equiv="content-type"
  7.         content="text/html;charset=utf-8">
  8.        
  9. <title>Bingo Card</title>
  10.  
  11. <link rel="stylesheet" href="./style.css" media="all">
  12. <link rel="icon" href="/favicon.ico">      
  13.  
  14. <?php
  15.         $pull = file("files/pull.txt", FILE_IGNORE_NEW_LINES);
  16.         shuffle($pull); $pull_ran = $pull[1];
  17. ?> 
  18.        
  19.        
  20.        
  21.        
  22. <TABLE BORDER=2 WIDTH="50%" HEIGHT="50%" CELLPADDING=3 CELLSPACING=3 align=CENTER>
  23. <div class="title">Apprentice Bingo Card</div>
  24. <p><br></p>
  25. <TR ALIGN=center>
  26.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  27.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  28.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  29.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  30.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  31. </TR>
  32. <TR ALIGN=center>
  33.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  34.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  35.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  36.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  37.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  38. </TR>
  39. <TR ALIGN=center>
  40.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  41.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  42.   <TD ALIGN=center height="75" bgcolor="#FF3333"><b>Free Space</b></TD>
  43.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  44.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  45. </TR>
  46. <TR ALIGN=center>
  47.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  48.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  49.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  50.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  51.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  52. </TR>
  53. <TR ALIGN=center>
  54.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  55.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  56.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  57.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  58.   <TD ALIGN=center height="75"><?php echo array_shift($pull) ?></TD>
  59. </TR>
  60. </TABLE>
  61. </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement