$num_rows) $ul= ($ll+$num_rows-1);
echo '
Monthly newsletters, books and other publications from CRC
Displaying '.$ll.'-'.$ul.' of '.$ttl_rows.' total items:
';
for ($i=0; $i <$num_rows; $i++) {
$row=mysql_fetch_array($rs);
if (strlen($row["fldSummary"]) > 150) $row["fldSummary"]=substr($row["fldSummary"], 0, 150);
echo 'by '.$row["fldAuthorName"].'
'.$row["fldSummary"].'
';
echo ''.$ntype[$row["fldPubType"]].' / '.$row["fldDate"].'
';
}
echo '| ';
if ($page>1) { echo '« Previous'; } else { echo '« Previous'; }
echo ' | ';
if ($ul<$ttl_rows) { echo 'Next »'; } else { echo 'Next »'; }
echo ' |
';
?>