Drupal investigation

organigram.php 344B

12345678910111213141516171819
  1. <h1>Organigram</h1>
  2. <table class="table table-bordered table-hover">
  3. <tr>
  4. <th>ID</th>
  5. <th>Username</th>
  6. <th>Forename</th>
  7. <th>Surname</th>
  8. </tr>
  9. <?php for($i=0; $i<count($users); $i++) {
  10. echo '<tr><td>'.implode("</td><td>", $users[$i]).'</td></tr>';
  11. } ?>
  12. </table>