+
\ No newline at end of file
diff --git a/ce-mois.php b/ce-mois.php
new file mode 100755
index 0000000..4ad09e6
--- /dev/null
+++ b/ce-mois.php
@@ -0,0 +1,240 @@
+
+
+
+
+
+
+
+
+ ? Utilisation: cliquer sur une vignette, puis.... ";
+$aide .= " -sur ordinateur: naviguer avec les touches flèches droite et gauche, quitter avec ESC. ";
+$aide .= " -sur tablettes et smartphones: 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.";
+?>
+
+
+
+
( ? )
+
+
+
+
+
+
+
+
ajax-loader.gif" >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/contact.php b/contact.php
new file mode 100755
index 0000000..2dc96cf
--- /dev/null
+++ b/contact.php
@@ -0,0 +1,34 @@
+
+
';
+ /* We call the pagination function here to generate Pagination link for us.
+ As you can see I have passed several parameters to the function. */
+ echo paginate_function($item_per_page, $page_number, $get_total_rows[0], $total_pages);
+ echo '
';
+ echo '';
+
+ exit;
+}
+################ pagination function #########################################
+function paginate_function($item_per_page, $current_page, $total_records, $total_pages)
+{
+ $pagination = '';
+ if($total_pages > 0 && $total_pages != 1 && $current_page <= $total_pages){ //verify total pages and current page number
+ $pagination .= '
';
+
+ $right_links = $current_page + 3;
+ $previous = $current_page - 3; //previous link
+ $next = $current_page + 1; //next link
+ $first_link = true; //boolean var to decide our first link
+
+ if($current_page > 1){
+ $previous_link = ($previous==0)? 1: $previous;
+ $pagination .= '