loading an external php file is cheap easy
<html>
<head>
<script type="text/javascript" src="jquery-1.6.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
// load home page when the page loads
$("#result").load("tablerecord.php");
});
</script>
</head>
<body>
THE LIST
<div id="result">
</div>
</body>
however....
$maxsecCode = "SELECT * FROM t_board";
$maxResult = mysql_query($maxsecCode);
$maxRows = mysql_num_rows($maxResult);
print "max rows is " . $maxRows . "<br>";
$linkNum = ceil($maxRows/10);
print $linkNum . "<br>";
for ($i=1; $i<=$linkNum; $i++) {
echo "<a href='tablerecord.php?page=".$i."'>".$i."</a> ";
}
the external php file loads records from a database, and divides the pages by 10, producing multiple links in the process.
if i click one of the pages i will be redirected to menu.php?page="whatever_page_i_clicked"!
i want to browse through the pages without leaving the main page.
is there any way to solve this problem?