Guest User

Untitled

a guest
Feb 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <table>
  2. <tr>
  3. <th>Atividade<th>
  4. <th>Usuario</th>
  5. <th>Data/Horario</th>
  6. </tr>
  7.  
  8. <?php
  9. $a = 0; $b = 0;
  10. while($a < 10){
  11. echo '<tr>';
  12. echo '<td>'.$tabela[$a][$b].'</td>';
  13. echo '<td>'.$tabela[$a][$b+1].'</td>';
  14. echo '<td>'.$tabela[$a][$b+2].'</td>';
  15. echo '</tr>';
  16. $a++;
  17. }
  18. ?>
  19. </table>
Add Comment
Please, Sign In to add comment