Demonstrating a simple paging style (this one is inbuilt)
1 | 2 3 4 »
<?php
include ('../../libs/phppaging.php');
// Set total records
$_PAGING->set_totalrecords ('demo', 500);
?>
<html>
<head>
<title>PHP:Paging - Demo 3</title>
</head>
<body>
<h1>PHP:Paging - Demo 3</h1>
<p>Demonstrating a simple paging style (this one is inbuilt)</p>
<php:paging name="demo" style="simple" />
<h3>Source: </h3>
<?php highlight_file (__FILE__); ?>
</body>
</html>