Created
June 4, 2017 08:17
-
-
Save rintoug/0bb33b925cafbb7181cb01b4c4256a59 to your computer and use it in GitHub Desktop.
How to do Pagination in CodeIgniter
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
<div id="body"> | |
<?php | |
foreach($countries as $country) { | |
echo $country['country_name'] . " - " . $country['country_code'] . "<br>"; | |
} | |
?> | |
<p><?php echo $links; ?></p> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment