Forum Moderators: coopster
My question is: Is there a way to keep the header and footer separate from the rest of the page so that when a user clicks through to consecutive pages the whole layout doesnt reload? And specifically: the flash movie can continue playing?
Someone mentioned using frames however I keep reading that frames are a no-no in this day & age.
Here's the recordset paging code:
<div id="arrows">
<table border="0">
<tr>
<td><?php if ($pageNum_creditsList > 0) { // Show if not first page ?>
<a href="<?php printf("%s?pageNum_creditsList=%d%s", $currentPage, max(0, $pageNum_creditsList - 1), $queryString_creditsList); ?>"><img src="images/btnPrev.png" border="0" /></a>
<?php } // Show if not first page ?> </td>
<td>
<div align="right">
<?php if ($pageNum_creditsList < $totalPages_creditsList) { // Show if not last page ?>
<a href="<?php printf("%s?pageNum_creditsList=%d%s", $currentPage, min($totalPages_creditsList, $pageNum_creditsList + 1), $queryString_creditsList); ?>"><img src="images/btnNext.png" border="0" /></a>
<?php } // Show if not last page ?>
</div></td>
</tr>
</table>
</div>
[edited by: Revata at 7:09 am (utc) on April 30, 2009]