Record inserted succesfully."; echo "
"; if($_SESSION['moms_uid'] == '1' && $_SESSION['moms_type'] == "super_admin") { $str = '
'; } else if($_SESSION['moms_uid'] == '1' && $_SESSION['moms_type'] == "admin") { $str = '
Name Type Language Country Action
'; } if($_SESSION['moms_uid'] == '1') { $str = '
Name Type Language Country Action
'; } else if($_SESSION['moms_type'] == "super_admin") { $str = '
Name Type Language Country Action
'; } else if($_SESSION['moms_type'] == "admin") { $str = '
Name Type Language Country Action
'; } if(mysql_num_rows($data)>0){ while($row = mysql_fetch_assoc($data)) { //Get Country details $country=mysql_fetch_assoc(mysql_query("select name_country from country where id_country=".$row['country'])); $get_type=mysql_fetch_assoc(mysql_query("select name_publication_type_en from publication_type where id_publication_type=".$row['id_publication_type'])); $edit_link = ''; $del_link = ''; if($row['active']=='1') { $img = "images/greencircle.png"; } else { $img = "images/redcircle.png"; } if($row['active']=='1') { $status = "Active"; } else { $status = "Inactive"; } if($_SESSION['moms_uid'] == '1' && $_SESSION['moms_type'] == "super_admin") { $str .= ''; } else if($_SESSION['moms_uid'] == '1' && $_SESSION['moms_type'] == "admin") { $str .= ''; } else if($_SESSION['moms_uid'] == '1') { $str .= ''; } else if($_SESSION['moms_type'] == "super_admin") { $str .= ''; } else if($_SESSION['moms_type'] == "admin") { $str .= ''; } ?> '; } $str .= '
Name Type Language Country
 '.$row['name_publication_en'].' '.$get_type['name_publication_type_en'].' '.$row['language'].' '.$country['name_country'].' '.$edit_link.'|'.$del_link.'
 '.$row['name_publication_en'].' '.$get_type['name_publication_type_en'].' '.$row['language'].' '.$country['name_country'].' '.$del_link.'
 '.$row['name_publication_en'].' '.$get_type['name_publication_type_en'].' '.$row['language'].' '.$country['name_country'].' '.$del_link.'
 '.$row['name_publication_en'].' '.$get_type['name_publication_type_en'].' '.$row['language'].' '.$country['name_country'].' '.$edit_link.'
 '.$row['name_publication_en'].' '.$get_type['name_publication_type_en'].' '.$row['language'].' '.$country['name_country'].'
No Record Found
'; echo $str; pagination($limit,$adjacent,$rows,$page); } function pagination($limit,$adjacents,$rows,$page){ if(!empty($_REQUEST['task'])){ $click = $_REQUEST[type]; } else { $click = 'All'; } $pagination=''; if ($page == 0) $page = 1; //if no page var is given, default to 1. $prev = $page - 1; //previous page is page - 1 $next = $page + 1; //next page is page + 1 $prev_=''; $first=''; $lastpage = ceil($rows/$limit); $next_=''; $last=''; if($lastpage > 1) { //previous button if ($page > 1) $prev_.= "previous"; else{ //$pagination.= "previous"; } //pages if ($lastpage < 5 + ($adjacents * 2)) //not enough pages to bother breaking it up { $first=''; for ($counter = 1; $counter <= $lastpage; $counter++) { if ($counter == $page) $pagination.= "$counter"; else $pagination.= "$counter"; } $last=''; } elseif($lastpage > 3 + ($adjacents * 2)) //enough pages to hide some { //close to beginning; only hide later pages $first=''; if($page < 1 + ($adjacents * 2)) { for ($counter = 1; $counter < 4 + ($adjacents * 2); $counter++) { if ($counter == $page) $pagination.= "$counter"; else $pagination.= "$counter"; } $last.= "Last"; } //in middle; hide some front and some back elseif($lastpage - ($adjacents * 2) > $page && $page > ($adjacents * 2)) { $first.= "First"; for ($counter = $page - $adjacents; $counter <= $page + $adjacents; $counter++) { if ($counter == $page) $pagination.= "$counter"; else $pagination.= "$counter"; } $last.= "Last"; } //close to end; only hide early pages else { $first.= "First"; for ($counter = $lastpage - (2 + ($adjacents * 2)); $counter <= $lastpage; $counter++) { if ($counter == $page) $pagination.= "$counter"; else $pagination.= "$counter"; } $last=''; } } if ($page < $counter - 1) $next_.= "next"; else{ //$pagination.= "next"; } $pagination = "
".$first.$prev_.$pagination.$next_.$last; //next button $pagination.= "
\n"; } echo "
".$pagination; ?>
Result =