// Print a message stating that no records was found
echo "<tr><td align=center>Sorry! No records was found</td></tr>";
}
// Close the table
echo "</TABLE>";
// free resources and close connection
OCIFreeStatement($rs);
OCILogoff($OracleDBConn);
?>
<div align=center>
<?php
// Here we will print the links to the other pages
// Calculating the amount of pages
if ($num_rows % $display_rows == 0) {
$total_pages = $num_rows / $display_rows;
} else {
$total_pages = ($num_rows / $display_rows) 1;
settype($total_pages, integer); // Rounding the variable
}
// If this is not the first page print a link to the previous page
if ($page != 1) {
echo "<a href='".$PHP_SELF."?page=".($page - 1)."'>Previous</a>";
}
// Now we can print the links to the other pages
for ($i = 1; $i <= $total_pages; $i ) {
if ($page == $i){
// Don't print the link to the current page
echo " ".$i;
} else {
//Print the links to the other pages
echo " <a href='".$PHP_SELF."?page=".$i."'>".$i."</a>";
}
}
// If this is not the last page print a link to the next page
if ($page < $total_pages) {
echo " <a href='".$PHP_SELF."?page=".($page 1)."'>Next</a>";
}
?>
</div>
<?php
// I'm just adding this section to print some of the variables for extra info
// and some debugging