Demonstrating a simple external paging style. Click here to view the external style file
1 | 2 3 4 »
<?php
include ('../../libs/phppaging.php');
// Set total records
$_PAGING->set_totalrecords ('demo', 500);
?>
<html>
<head>
<title>PHP:Paging - Demo 4</title>
</head>
<body>
<h1>PHP:Paging - Demo 4</h1>
<p>Demonstrating a simple external paging style. <a href="style.html">Click here to view the external style file</a></p>
<php:paging name="demo" src="<?php echo dirname(__FILE__); ?>/style.html" />
<h3>Source: </h3>
<?php highlight_file (__FILE__); ?>
</body>
</html>