Single v1
-commentaires cachés -settings -3 lightbox -enqueue js et css
This commit is contained in:
235
Pagination/ce-mois.php
Executable file
235
Pagination/ce-mois.php
Executable file
@@ -0,0 +1,235 @@
|
||||
<?php
|
||||
/**
|
||||
* Template Name: Ce-mois
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Ten
|
||||
* @since Twenty Ten 1.0
|
||||
*/
|
||||
|
||||
|
||||
get_header();
|
||||
|
||||
$root = $_SERVER['DOCUMENT_ROOT'];
|
||||
define('SERVERPATH',$root.'/zenphoto');
|
||||
//define('WEBPATH','/'.basename(dirname(__FILE__)).'/zenphoto');
|
||||
//require_once(SERVERPATH.'/zp-core/template-functions.php');
|
||||
include('../photoblog/exifer/exif.php');
|
||||
|
||||
?>
|
||||
|
||||
<div class="content">
|
||||
<div class="container">
|
||||
<div class="post_content">
|
||||
<?php if(have_posts()): the_post(); ?>
|
||||
<article class="post_box" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
<h1><?php the_title(); ?></h1>
|
||||
<?php the_content(); ?>
|
||||
</article>
|
||||
|
||||
<?php
|
||||
$mois = date('n');
|
||||
$an = date('Y');
|
||||
$image = $mois . '_' . $an . '.jpg';
|
||||
$annee = $an;
|
||||
|
||||
// nom des fichiers: 7_2009.jpg et non pas 07_2009.jpg
|
||||
|
||||
for ($i = 0; $i <= 11 ; $i++) {
|
||||
$a = ($mois - $i);
|
||||
if ($a < 1) {
|
||||
$a = (12 + $a);
|
||||
$annee = $an - 1;
|
||||
}
|
||||
$tableau[$i] = $a . '_' . $annee . '.jpg';
|
||||
}
|
||||
|
||||
$i = 0;
|
||||
while ($i < 13) {
|
||||
$file = '../zenphoto/albums/photos-du-mois/' . $tableau[$i];
|
||||
//echo $file;
|
||||
|
||||
if (file_exists($file)) {
|
||||
//echo "<br />" ."file exist: " . $file;
|
||||
// ../zenphoto/albums/photos-du-mois/4_2014.jpg
|
||||
// 4_2014_800_watermark.jpg, 4_2014_FULL_watermark.jpg
|
||||
$photo_du_mois = $file;
|
||||
$title = $tableau[$i];
|
||||
|
||||
$size = getimagesize($photo_du_mois, $info);
|
||||
//preprint($size);
|
||||
|
||||
if ($size[0] > 1000) {
|
||||
// HD
|
||||
$hd = '../../zenphoto/cache/photos-du-mois/' . substr($tableau[$i], 0, strlen($tableau[$i]) - 4) . "_FULL_watermark.jpg";
|
||||
if (file_exists($hd)) {
|
||||
$size_hd = getimagesize($hd, $info_hd);
|
||||
$imgs['img_hd'] = array(
|
||||
'url' => $hd,
|
||||
'width' => $size_hd[0],
|
||||
'height' => $size_hd[1]
|
||||
);
|
||||
}
|
||||
else {
|
||||
$imgs['img_hd'] = array(
|
||||
'url' => '../' . $photo_du_mois,
|
||||
'width' => $size[0],
|
||||
'height' => $size[1]
|
||||
);
|
||||
}
|
||||
// SD
|
||||
$sd = '../../zenphoto/cache/photos-du-mois/' . substr($tableau[$i], 0, strlen($tableau[$i]) - 4) . "_800_watermark.jpg";
|
||||
if (file_exists($sd)) {
|
||||
$size_sd = getimagesize($sd, $info_sd);
|
||||
$imgs['img_sd'] = array(
|
||||
'url' => $sd,
|
||||
'width' => $size_sd[0],
|
||||
'height' => $size_sd[1]
|
||||
);
|
||||
}
|
||||
} // / $size[0] > 1000
|
||||
else {
|
||||
// SD
|
||||
$sd = '../../zenphoto/cache/photos-du-mois/' . substr($tableau[$i], 0, strlen($tableau[$i]) - 4) . "_800_watermark.jpg";
|
||||
if (file_exists($sd)) {
|
||||
$size_sd = getimagesize($sd, $info_sd);
|
||||
$imgs['img_sd'] = array(
|
||||
'url' => $sd,
|
||||
'width' => $size_sd[0],
|
||||
'height' => $size_sd[1]
|
||||
);
|
||||
}
|
||||
$imgs['img_hd'] = array(
|
||||
'url' => "",
|
||||
'width' => "",
|
||||
'height' => ""
|
||||
);
|
||||
} // / ($size[0] <= 1000)
|
||||
|
||||
$title = explode('.',$title);
|
||||
$title = explode('_',$title[0]);
|
||||
$title = mois2($title[0]) . ' ' . $title[1];
|
||||
$imgs['img_sd']['title'] = $title;
|
||||
|
||||
if (isset($info["APP13"])) {
|
||||
$iptc = iptcparse($info["APP13"]);
|
||||
|
||||
if (isset($iptc['2#120'][0])) $legende = $iptc['2#120'][0];
|
||||
else $legende = "";
|
||||
if (isset($iptc['2#005'][0])) $titre = $iptc['2#005'][0];
|
||||
else $titre = "";
|
||||
|
||||
$keyword = "";
|
||||
if (isset($iptc['2#025'])) {
|
||||
foreach ($iptc['2#025'] as $key => $val) {
|
||||
$keyword .= '<a href="' . $host . '/zenphoto/index.php?p=search&words=' . $val . '" title="Tag > ' . $val . '" rel="tag">' . $val . '</a>';
|
||||
$keyword .= ', ';
|
||||
}
|
||||
$keyword = substr($keyword, 0, -2);
|
||||
}
|
||||
|
||||
$imgs['img_sd']['legende'] = $legende;
|
||||
$imgs['img_sd']['titre'] = $titre;
|
||||
$imgs['img_sd']['keyword'] = $keyword;
|
||||
} // / isset($info["APP13"]
|
||||
|
||||
$exifInfo = "";
|
||||
$exif_array = read_exif_data_raw($file,0);
|
||||
$exifInfo = __('The','CreatorThemeRes-child') . " " .date(__("F j, Y, g:i a",'CreatorThemeRes-child'),strtotime($exif_array['SubIFD']['DateTimeOriginal'])).' - ';
|
||||
$exifInfo .= $exif_array['SubIFD']['ExposureTime']. __(' at ','CreatorThemeRes-child') .$exif_array['SubIFD']['FNumber'].' - ' .$exif_array['SubIFD']['ISOSpeedRatings'].' ISO - '. __('Focal','CreatorThemeRes-child') .$exif_array['SubIFD']['FocalLength'];
|
||||
$imgs['img_sd']['exif'] = $exifInfo;
|
||||
|
||||
break;
|
||||
|
||||
} // /file_exists($file)
|
||||
|
||||
$i++;
|
||||
} // /while
|
||||
|
||||
//preprint($imgs);
|
||||
|
||||
?>
|
||||
|
||||
<div class="cadre">
|
||||
|
||||
<?php if (($imgs['img_sd']['titre'] != "") || ($imgs['img_sd']['legende'] != "")) { ?>
|
||||
<p class="titrePhoto"><?php echo $imgs['img_sd']['titre']; ?>Titre</p>
|
||||
<p class="legendePhoto"><?php echo $imgs['img_sd']['legende']; ?>Légende</p>
|
||||
<?php } ?>
|
||||
|
||||
<!--img src="watermark2.php?src=<?php echo $photo_du_mois; ?>" alt="Image du mois" title="<?php echo $title; ?>" <?php echo $size[3]; ?> /-->
|
||||
|
||||
<!-- Retina -->
|
||||
<?php
|
||||
if (($imgs['img_sd']['url'] != "") && ($imgs['img_hd']['url'] != "")) {
|
||||
$standard_source = $imgs['img_sd']['url'] . ', ' . $imgs['img_hd']['url'] . ' 2x';
|
||||
//echo "1";
|
||||
}
|
||||
else if ($imgs['img_sd']['url'] != "") {
|
||||
$standard_source = $imgs['img_sd']['url'];
|
||||
//echo "2";
|
||||
}
|
||||
else if ($imgs['img_hd']['url'] != "") {
|
||||
$standard_source = $imgs['img_hd']['url'] . ' 2x';
|
||||
//echo "3";
|
||||
}
|
||||
//echo $standard_source;
|
||||
?>
|
||||
|
||||
<picture data-picture data-alt="">
|
||||
<!--[if IE 9]><video style="display: none;"><![endif]-->
|
||||
<source class="image_standard" srcset="<?php echo $standard_source; ?>">
|
||||
<!--source class="image_medium" srcset="" media="(max-width: 767px)">
|
||||
<source class="image_small" srcset="" media="(max-width: 767px)"-->
|
||||
<!--[if IE 9]></video><![endif]-->
|
||||
<?php
|
||||
echo '<img srcset="' . $imgs['img_sd']['url'] . '" alt="" width="'. $imgs['img_sd']['width'] . '" height="'. $imgs['img_sd']['height'] .'" />';
|
||||
?>
|
||||
</picture>
|
||||
|
||||
<!-- /Retina -->
|
||||
|
||||
</div><!-- /cadre -->
|
||||
|
||||
<?php if (($imgs['img_sd']['titre'] != "") || ($imgs['img_sd']['legende'] != "")) { ?>
|
||||
<p class="titrePhoto"><?php echo $imgs['img_sd']['titre']; ?>Titre</p>
|
||||
<p class="legendePhoto"><?php echo $imgs['img_sd']['legende']; ?>Légende</p>
|
||||
<?php } ?>
|
||||
|
||||
<p class="exifs"><?php echo $imgs['img_sd']['exif']; ?></p>
|
||||
|
||||
|
||||
|
||||
<?php
|
||||
$aide = "<span class='aide'> ? </span><b>Utilisation:</b> cliquer sur une vignette, puis....<br />";
|
||||
$aide .= " <b><i>-sur ordinateur:</i></b> naviguer avec les touches flèches droite et gauche, quitter avec ESC.<br />";
|
||||
$aide .= " <b><i>-sur tablettes et smartphones:</i></b> balayer l'écran avec un doigt vers la droite ou vers la gauche, ou naviguer avec les touches flèches droite et gauche. Cliquer sur la X pour quitter.";
|
||||
?>
|
||||
|
||||
<div id="archive">
|
||||
<p style="clear: both; "></p>
|
||||
<h4><?php echo gettext("Archives"); ?> (<abbr title="<?php echo $aide; ?>" rel="tooltip"> ? </abbr>)</h4>
|
||||
<!--h4><?php echo gettext("Archives"); ?> <span class='aide'><a href="#" title="<?php echo $aide; ?>" class="tooltip"><span title="<?php echo gettext("Help"); ?>">( ? )</span></a></span></h4-->
|
||||
|
||||
<p style="clear: both; "></p>
|
||||
|
||||
<div id="loading"></div>
|
||||
<div id="container">
|
||||
<!--div class="data"></div-->
|
||||
<p style="clear: both; "></p>
|
||||
<!--div class="pagination"></div-->
|
||||
</div>
|
||||
|
||||
</div><!-- /#archive -->
|
||||
|
||||
<?php
|
||||
endif; // /have_posts()
|
||||
?>
|
||||
|
||||
</div><!-- /post_content -->
|
||||
</div><!-- /container -->
|
||||
</div><!-- /content -->
|
||||
|
||||
<?php
|
||||
get_footer( 'page' );
|
||||
?>
|
||||
96
Pagination/header.php
Executable file
96
Pagination/header.php
Executable file
@@ -0,0 +1,96 @@
|
||||
<!DOCTYPE html>
|
||||
<html <?php language_attributes(); ?>>
|
||||
<head>
|
||||
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<?php wp_head(); ?>
|
||||
|
||||
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
function loading_show(){
|
||||
$('#loading').html("<img src='<?php echo get_stylesheet_directory_uri(); ?>/images/loading.gif'/>").fadeIn('fast');
|
||||
}
|
||||
function loading_hide(){
|
||||
$('#loading').fadeOut('fast');
|
||||
}
|
||||
function loadData(page){
|
||||
loading_show();
|
||||
$.ajax
|
||||
({
|
||||
type: "POST",
|
||||
url: "<?php echo get_stylesheet_directory_uri() . '/load_data.php'; ?>",
|
||||
data: "page="+page,
|
||||
success: function(msg)
|
||||
{
|
||||
$("#container").ajaxComplete(function(event, request, settings)
|
||||
{
|
||||
loading_hide();
|
||||
$("#container").html(msg);
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
loadData(1); // For first time page load default results
|
||||
$('#container .pagination li.active').live('click',function(){
|
||||
var page = $(this).attr('p');
|
||||
loadData(page);
|
||||
|
||||
});
|
||||
$('#go_btn').live('click',function(){
|
||||
var page = parseInt($('.goto').val());
|
||||
var no_of_pages = parseInt($('.total').attr('a'));
|
||||
if(page != 0 && page <= no_of_pages){
|
||||
loadData(page);
|
||||
}else{
|
||||
alert('Enter a PAGE between 1 and '+no_of_pages);
|
||||
$('.goto').val("").focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body <?php body_class(); ?>>
|
||||
<header id="head">
|
||||
<div class="top-area">
|
||||
<div class="container">
|
||||
<div class="head-details">
|
||||
<?php
|
||||
echo (dess_setting('dess_tel') != '' ? __('Tel: ','creator').'<a href="tel:'.dess_setting('dess_tel').'">'. dess_setting('dess_tel').'</a>' : '');
|
||||
echo (dess_setting('dess_email') != '' ? ' | '.__('Email: ','creator').'<a href="mailto:'.dess_setting('dess_email').'">'. dess_setting('dess_email').'</a>' : '');
|
||||
echo (dess_setting('dess_hoursup') != '' ? ' | '.dess_setting('dess_hoursup') : '');
|
||||
?>
|
||||
</div><!-- head-details -->
|
||||
<div class="head-socials">
|
||||
<ul>
|
||||
<?php
|
||||
$socials = array('twitter','facebook','google-plus','instagram','pinterest','vimeo','youtube','linkedin');
|
||||
for($i=0;$i<count($socials);$i++){
|
||||
$url = '';
|
||||
$s = $socials[$i];
|
||||
$url = dess_setting('dess_'.$s);
|
||||
echo ($url != '' ? '<li><a target="_blank" href="'.$url.'"><img src="'.esc_url( get_stylesheet_directory_uri() ).'/images/'.$s.'-icon.png" alt="'.$s.'" /></a></li>':'');
|
||||
}
|
||||
?>
|
||||
</ul>
|
||||
</div><!-- head-socials -->
|
||||
<div class="clear"></div>
|
||||
</div><!-- container -->
|
||||
</div><!-- top-area -->
|
||||
<div class="head-area">
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<?php echo (dess_setting('dess_logo') != '' ? '<a href="'.home_url().'"><img src="'.dess_setting('dess_logo').'" alt="logo" /></a>': '<a href="'.home_url().'"><img src="'.esc_url( get_stylesheet_directory_uri() ).'/images/logo.png" alt="logo" /></a>'); ?>
|
||||
</div><!-- logo -->
|
||||
<div class="head-nav">
|
||||
<?php wp_nav_menu(array('theme_location' => 'header-menu')); ?>
|
||||
</div><!-- head-nav -->
|
||||
<div class="clear"></div>
|
||||
</div><!-- container -->
|
||||
</div><!-- head-area -->
|
||||
|
||||
</header>
|
||||
187
Pagination/load_data.php
Executable file
187
Pagination/load_data.php
Executable file
@@ -0,0 +1,187 @@
|
||||
<style type="text/css">
|
||||
/*found on http://www.brunildo.org/test/img_center.html*/
|
||||
.wraptocenter {
|
||||
display: table-cell!important;
|
||||
text-align: center!important;
|
||||
vertical-align: middle!important;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
}
|
||||
.wraptocenter * {
|
||||
vertical-align: middle!important;
|
||||
}
|
||||
/*\*//*/
|
||||
.wraptocenter {
|
||||
display: block;
|
||||
}
|
||||
.wraptocenter span {
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
width: 1px;
|
||||
}
|
||||
/**/
|
||||
</style>
|
||||
<!--[if IE]><style>
|
||||
.wraptocenter span {
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
}
|
||||
</style><![endif]-->
|
||||
</style>
|
||||
|
||||
<?php
|
||||
if($_POST['page'])
|
||||
{
|
||||
$page = $_POST['page'];
|
||||
$cur_page = $page;
|
||||
$page -= 1;
|
||||
$per_page = 15;
|
||||
$previous_btn = true;
|
||||
$next_btn = true;
|
||||
$first_btn = true;
|
||||
$last_btn = true;
|
||||
$start = $page * $per_page;
|
||||
include("db.php");
|
||||
include("fonctions.php");
|
||||
|
||||
$album = 'photos-du-mois'; //Photos du mois
|
||||
$item_per_page = 12; //item to display per page
|
||||
|
||||
$table = array();
|
||||
if ($_SERVER['HTTP_HOST'] == "macbook-pro.local") {
|
||||
$table['images'] = ".images";
|
||||
$table['albums'] = ".albums";
|
||||
}
|
||||
if ($_SERVER['HTTP_HOST'] == "clicclac.info") {
|
||||
$table['images'] = "zenphoto_images";
|
||||
$table['albums'] = "zenphoto_albums";
|
||||
}
|
||||
|
||||
$mysqli = new mysqli($db_host, $db_username, $db_password, $db_name);
|
||||
//Output any connection error
|
||||
if ($mysqli->connect_error) {
|
||||
die('Error : ('. $mysqli->connect_errno .') '. $mysqli->connect_error);
|
||||
}
|
||||
|
||||
|
||||
// Récupérer l'ID de l'album 'photos-du-mois' ($id_album)
|
||||
$i = 0;
|
||||
$conn = new mysqli($db_host, $db_username, $db_password, $db_name);
|
||||
if ($conn->connect_error) {
|
||||
trigger_error('Database connection failed: ' . $conn->connect_error, E_USER_ERROR);
|
||||
exit();
|
||||
}
|
||||
$conn->set_charset("utf8");
|
||||
|
||||
$excquery = "SELECT `id` FROM `" . $table['albums'] . "` WHERE `folder` = '" . $album . "'";
|
||||
|
||||
if ($result = $conn->query($excquery)) {
|
||||
$result->data_seek(0);
|
||||
$row = $result->fetch_row();
|
||||
$id_album = $row[0];
|
||||
$result->close();
|
||||
}
|
||||
|
||||
$conn->close();
|
||||
|
||||
/*
|
||||
$query_pag_data = "SELECT msg_id,message from messages LIMIT $start, $per_page";
|
||||
$result_pag_data = mysql_query($query_pag_data) or die('MySql Error' . mysql_error());
|
||||
$msg = "";
|
||||
while ($row = mysql_fetch_array($result_pag_data)) {
|
||||
$htmlmsg=htmlentities($row['message']);
|
||||
$msg .= "<li><b>" . $row['msg_id'] . "</b> " . $htmlmsg . "</li>";
|
||||
}
|
||||
$msg = "<div class='data'><ul>" . $msg . "</ul></div>"; // Content for Data
|
||||
*/
|
||||
$msg = "";
|
||||
|
||||
//Limit our results within a specified range.
|
||||
$results = $mysqli->prepare("SELECT `filename` FROM `" . $table['images'] . "` WHERE `albumid` = ? ORDER BY `date` DESC LIMIT $start, $per_page");
|
||||
$results->bind_param('i', $id_album);
|
||||
$results->execute(); //Execute prepared Query
|
||||
$results->bind_result($filename); //bind variables to prepared statement
|
||||
|
||||
//Display records fetched from database.
|
||||
while($results->fetch()){ //fetch values
|
||||
//$msg .= "<li><b>" . $filename . "</b></li>";
|
||||
$msg .= displayRetina($filename,$album);
|
||||
}
|
||||
//$msg = "<div class='data'><ul>" . $msg . "</ul></div>"; // Content for Data
|
||||
|
||||
|
||||
/* ---------------------------------------------
|
||||
$query_pag_num = "SELECT COUNT(*) AS count FROM messages";
|
||||
$result_pag_num = mysql_query($query_pag_num);
|
||||
$row = mysql_fetch_array($result_pag_num);
|
||||
$count = $row['count'];
|
||||
*/
|
||||
|
||||
$results = $mysqli->query("SELECT COUNT(*) FROM `" . $table['images'] . "` WHERE `albumid` = $id_album ");
|
||||
$count = $results->fetch_row(); //hold total records in variable
|
||||
|
||||
$no_of_paginations = ceil($count[0] / $per_page);
|
||||
|
||||
/* ---------------Calculating the starting and endign values for the loop----------------------------------- */
|
||||
if ($cur_page >= 7) {
|
||||
$start_loop = $cur_page - 3;
|
||||
if ($no_of_paginations > $cur_page + 3)
|
||||
$end_loop = $cur_page + 3;
|
||||
else if ($cur_page <= $no_of_paginations && $cur_page > $no_of_paginations - 6) {
|
||||
$start_loop = $no_of_paginations - 6;
|
||||
$end_loop = $no_of_paginations;
|
||||
} else {
|
||||
$end_loop = $no_of_paginations;
|
||||
}
|
||||
} else {
|
||||
$start_loop = 1;
|
||||
if ($no_of_paginations > 7)
|
||||
$end_loop = 7;
|
||||
else
|
||||
$end_loop = $no_of_paginations;
|
||||
}
|
||||
/* ----------------------------------------------------------------------------------------------------------- */
|
||||
$msg .= "<div class='pagination'><ul>";
|
||||
|
||||
// FOR ENABLING THE FIRST BUTTON
|
||||
if ($first_btn && $cur_page > 1) {
|
||||
$msg .= "<li p='1' class='active'>First</li>";
|
||||
} else if ($first_btn) {
|
||||
$msg .= "<li p='1' class='inactive'>First</li>";
|
||||
}
|
||||
|
||||
// FOR ENABLING THE PREVIOUS BUTTON
|
||||
if ($previous_btn && $cur_page > 1) {
|
||||
$pre = $cur_page - 1;
|
||||
$msg .= "<li p='$pre' class='active'>Previous</li>";
|
||||
} else if ($previous_btn) {
|
||||
$msg .= "<li class='inactive'>Previous</li>";
|
||||
}
|
||||
for ($i = $start_loop; $i <= $end_loop; $i++) {
|
||||
|
||||
if ($cur_page == $i)
|
||||
$msg .= "<li p='$i' style='color:#fff;background-color:#006699;' class='active'>{$i}</li>";
|
||||
else
|
||||
$msg .= "<li p='$i' class='active'>{$i}</li>";
|
||||
}
|
||||
|
||||
// TO ENABLE THE NEXT BUTTON
|
||||
if ($next_btn && $cur_page < $no_of_paginations) {
|
||||
$nex = $cur_page + 1;
|
||||
$msg .= "<li p='$nex' class='active'>Next</li>";
|
||||
} else if ($next_btn) {
|
||||
$msg .= "<li class='inactive'>Next</li>";
|
||||
}
|
||||
|
||||
// TO ENABLE THE END BUTTON
|
||||
if ($last_btn && $cur_page < $no_of_paginations) {
|
||||
$msg .= "<li p='$no_of_paginations' class='active'>Last</li>";
|
||||
} else if ($last_btn) {
|
||||
$msg .= "<li p='$no_of_paginations' class='inactive'>Last</li>";
|
||||
}
|
||||
$goto = "<input type='text' class='goto' size='1' style='margin-top:-1px;margin-left:60px;'/><input type='button' id='go_btn' class='go_button' value='Go'/>";
|
||||
$total_string = "<span class='total' a='$no_of_paginations'>Page <b>" . $cur_page . "</b> of <b>$no_of_paginations</b></span>";
|
||||
$msg = $msg . "</ul>" . $total_string . "</div>"; // Content for pagination
|
||||
echo $msg;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user