ginger
set a variable in your script called $limit_start
if (!isset($limit_start))
{
$limit_start = "0";
}
$limit_end = $limit_start + 10;
modify your sql statement to use the limit function:
$get_data = "select * from table where 1=1 limit $limit_start, $limit_end";
if they go to another page, just set
$limit_start = 10 * $page_number;
-=Lazzerous=-