Created
November 24, 2016 08:49
-
-
Save mdmunir/809160ae633b0bc1e62603f859ac7768 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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