MVCC News
MVCC News
SELECT newsID,DatePosted,NewsTitle,NewsDescription
FROM news
ORDER BY newsID DESC
intItemsPerPage = 5;
if (start LTE intItemsPerPage) {
blnShow_prev = false;
} else {
blnShow_prev = true;
}
if (Evaluate(start + intItemsPerPage) GT lngTotal_records) {
blnShow_next = false;
} else {
blnShow_next = true;
}
#strPLink# | #strNLink#