Skip to content

Instantly share code, notes, and snippets.

@mdmunir
Created November 24, 2016 08:49
Show Gist options
  • Select an option

  • Save mdmunir/809160ae633b0bc1e62603f859ac7768 to your computer and use it in GitHub Desktop.

Select an option

Save mdmunir/809160ae633b0bc1e62603f859ac7768 to your computer and use it in GitHub Desktop.
<h1>Welcome to CodeIgniter!</h1>
<div id="body">
<table width="100%">
<tbody>
<?php foreach($users as $user): ?>
<tr>
<th><?= $user->id?></th>
<td><?= $user->username?></td>
<td><?= $user->email?></td>
</tr>
<?php endforeach;?>
</tbody>
</table>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment