| Server IP : 23.111.136.34 / Your IP : 216.73.216.136 Web Server : Apache System : Linux servidor.eurohost.com.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : meusitei ( 1072) PHP Version : 5.6.40 Disable Function : show_source, system, shell_exec, passthru, proc_open MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/meusitei/public_html/controle/cms/js/ |
Upload File : |
<?php
/*// *** You only need to configure this ***
$db_server = 'localhost';
$db_username = 'root';
$db_password = '';
$db_name = 'nitro';
// ***************************************
mysql_connect($db_server, $db_username, $db_password) or die("Could not connect: " . mysql_error());
mysql_select_db($db_name);*/
include("../conectdb.php");
// you may use any pagination system that you like, including this one, because its independent from the table,
// but i strongly recomend the full version of creativePagerLite because it has lots of options, other types of paginations, much more flexible and it's extremely easy to use.
function getCreativePagerLite($id,$page,$total_items,$items_per_page,$info1=true){
include_once('creativePagerLite.php');
$cp=new CreativePager();
// Data Gathering
$params['selected_page'] = $page;
$params['total_items'] = $total_items;
$params['items_per_page'] = $items_per_page=='all' ? $total_items : $items_per_page;
$params['url'] = 'javascript: ctPager(\''.$id.'\',\'#NUM_PAGE#\');';
// Layout Configurations
$params['id'] = $id.'_pager';
$params['type'] = 'centered';
$params['nav_pages'] = 5;
$params['info1'] = $info1;
$cp->pager($params);
$out_pager=$cp->display();
return $out_pager;
}
// function to check if an array as any value - for the real example and complex example
function filled_array($arr){
for($i=0; $i<count($arr); $i++){
if($arr[$i]!='')
return true;
}
return false;
}
?>