PHP Classes

File: examples/mysqli_prepared.php

Recommend this page to a friend!
  Classes of Mark Rolich   Extended Generic Pager   examples/mysqli_prepared.php   Download  
File: examples/mysqli_prepared.php
Role: Example script
Content type: text/plain
Description: Example of prepared MySQLi pagination
Class: Extended Generic Pager
Paginate data listings from arrays, CSV or MySQL
Author: By
Last change: Update of examples/mysqli_prepared.php
Date: 2 months ago
Size: 566 bytes
 

Contents

Class file image Download
<?php
include '../Pager.php';
include
'../PagerMySQL.php';

$pageNum = (isset($_GET['p']) && $_GET['p'] != '') ? (int)$_GET['p'] : 1;

$dbh = new mysqli('localhost', 'root', '', 'pager_test');

$id = 1;
$country = 'A%';

$dataOptions = array(
   
'handle' => $dbh,
   
'query' => 'SELECT * FROM data WHERE id > ? AND country LIKE ?',
   
'params' => array('is', &$id, &$country)
);

$pager = new PagerMySQL($pageNum);
$data = $pager->getData($dataOptions);

$pagerNav = $pager->render();

$pageTitle = 'Pager - MySQLi prepared example';
include
'example.tpl.php';
?>