Skip to content

Instantly share code, notes, and snippets.

@rintoug
Created June 4, 2017 08:17
Show Gist options
  • Save rintoug/0bb33b925cafbb7181cb01b4c4256a59 to your computer and use it in GitHub Desktop.
Save rintoug/0bb33b925cafbb7181cb01b4c4256a59 to your computer and use it in GitHub Desktop.
How to do Pagination in CodeIgniter
<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