i have a template with module run where i create pagination
<!DOCTYPE HTML>
<\html>
<\head>
<\head>
<\body>
<?php echo Modules::run("job/getotherJobtype", "3", 10); ?>
<\body>
<\html>
my route look like this
$route['(:num)'] = "home";
my url looks like example.com/1
now my error is previous link is not showing on click next button and the number not change on next button link and the first 1 link don't get any link
can any one got idea about it
my controller look likes public function example($typeId = "") { $this->table = 't1'; $str = ''; $nowDate = date('Y-m-d'); $join = array(array("e", "e.userid = jobs.userId", "left"), array("post_type", "post_type.id = js.post_type", "left"));
}
i have a template with module run where i create pagination <!DOCTYPE HTML> <\html> <\head> <\head> <\body> <?php echo Modules::run("job/getotherJobtype", "3", 10); ?> <\body> <\html>
my route look like this $route['(:num)'] = "home";
my url looks like example.com/1 now my error is previous link is not showing on click next button and the number not change on next button link and the first 1 link don't get any link can any one got idea about it