Code: Select all
<td>
<?php include 'index.php' ?>
</td>Everything works fine except when I choose the next page of posts, it's a new page and is no longer contained within the context of the table/column that the original 'include' displayed. Is there a way to fix this?
Here is the code that calls the next page of posts:
Code: Select all
echo "[<a href="index.php?page=$next" title="Page $next">Next >></a>]";Anyone?