$offset = $PAGESIZE * ($page - 1);
if ($offset < 0) {
$offset = 0;
}

$limit = $PAGESIZE;
if ($offset + $PAGESIZE > $tcnt) {
$limit = $tcnt % $PAGESIZE;
}