dwlakes

Untitled

Apr 1st, 2022
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.74 KB | None | 0 0
  1. <?php
  2.    $pictures = array('beanshoes.png', 'reseesesbeans.png', 'spidermanbeans.png');
  3.  
  4.   shuffle($pictures);
  5. ?>
  6. <!DOCTYPE html>
  7. <html>
  8.   <head>
  9.     <title>Bob's Auto Parts</title>
  10.   </head>
  11.   <body>
  12.     <h1>Bob's Auto Parts</h1>
  13.       <div align="center">
  14.       <table style="width: 100%; border: 0">
  15.         <tr>
  16.         <?php
  17.         for ($i = 0; $i < 3; $i++) {
  18.           echo "<td style=\"width: 33%; text-align: center\">
  19.                 <img src=\"";
  20.           echo $pictures[$i];
  21.           echo "\"/></td>";
  22.         }
  23.         ?>
  24.         </tr>
  25.      </table>
  26.      </div>
  27.   </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment