'staff',
'allowSearch' => '0',
));
list($staff_introRecords, $staff_introMetaData) = getRecords(array(
'tableName' => 'staff_intro',
'where' => whereRecordNumberInUrl(1),
'loadUploads' => '0',
'limit' => '1',
));
$staff_introRecord = @$staff_introRecords[0]; // get first record
// show error message if no matching record is found
if (!$staff_introRecord) {
print "Record not found!";
exit;
}
?>