Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Kirkus Review</title>
  5. </head>
  6. <body>
  7.     <center>
  8.     <?php
  9.         function col($c) {
  10.             echo "<div class="container">
  11.                     <div class="book-detail">
  12.                         <img src="%PUTANJA_DO_SLIKE%"></img>
  13.                         <h3>​ %NASLOV_KNJIGE%​ </h3>
  14.                         <p>​ %SAŽETAK_KNJIGE%​ </p>
  15.                     </div>
  16.                     <div class="book-review">
  17.                         <h3 class="%KLASA_REJTINGA%">​ %REJTING%​ </h3>
  18.                         <p>​ %RECENZIJA%​ </p>
  19.                     </div>
  20.                 </div>";
  21.         }
  22.     ?>
  23.         <table>
  24.             <?php for($c = 0, $i = 0;$i < 8;$i++): $c = $c % 2 == 0 ? 1 : 0; ?>
  25.                 <tr>
  26.                     <?php for($j = 0;$j < 8;$j++): $c = $c % 2 == 0 ? 1 : 0; ?>
  27.                     <?php col($c) ?>
  28.                     <?php endfor; ?>
  29.                 </tr>
  30.             <?php endfor; ?>
  31.         </table>
  32.     </center>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement