Metadata
-
- Item Control Number: '.$ItemID.'
';
- echo 'Title: '.$row_title.'
';
- echo 'Creator: '.$row_author_sort.'
';
- echo 'Publisher: '.$row_publisher.'
';
- echo 'Date: '.$row_pubdate.'
';
- echo 'Type: '.$row_type.'
';
- echo 'Subjects: ';
- while ($row = $tags->fetchArray()) {
- $row_tags = $row['name'];
- echo '['.$row_tags.'] ';
- }
- echo '
Identifiers:
';
- while ($row = $identifiers->fetchArray()) {
- $row_id_type = $row['type'];
- $row_id_val = $row['val'];
- echo ''.$row_id_type.': ' .$row_id_val.'
';
- }
- echo 'Language(s): ';
- while ($row = $languages->fetchArray()) {
- $row_lang_code = $row['lang_code'];
- echo '[ '.$row_lang_code.' ] ';
- }
- echo '
Created: '.$row_created.'
';
- echo 'Last Modified: '.$row_modified;
- ?>
-