Guest User

Untitled

a guest
Jul 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.76 KB | None | 0 0
  1. <?= "<table border='1'>" ?>
  2.        
  3.      
  4.         <?php
  5.        
  6.         for($i; $i<count($tabulka); $i++):
  7.             ?>
  8.           <?= "<tr>" ?>
  9.          <?php foreach($hlavicka as $zapati): ?>
  10.             <?= "<th>".$zapati."</th>" ?>
  11.         <?php endforeach; ?>        
  12.         <?= "</tr>" ?>  
  13.         <?php  
  14.         endfor;
  15.         ?>
  16.        
  17.        
  18.      
  19.         <?php
  20.      
  21.         for($i; $i<count($tabulka[0]); $i++):
  22.             ?>
  23.         <?php foreach($tabulka as $obsah): ?>
  24.         <?= "<tr>" ?>
  25.             <?php foreach($obsah as $content): ?>
  26.         <?= "<th>".$content."</th>" ?>
  27.             <?php endforeach; ?>
  28.            <?= "</tr>" ?>
  29.         <?php endforeach; ?>
  30.         <?php endfor; ?>
  31.    
  32.     <?= "</table>" ?>
Add Comment
Please, Sign In to add comment