<?php header('Content-type: application/xml; charset=utf-8'); ?><?xml version="1.0" encoding="UTF-8"?>
<?php
  /* STEP 1: LOAD RECORDS - Copy this PHP code block near the TOP of your page */
  require_once "/cmsAdmin/lib/viewer_functions.php";

  list($galleryRecords, $galleryMetaData) = getRecords(array(
    'tableName'   => 'gallery',
  ));

?>
<gallery>
<?php foreach ($galleryRecords as $record): ?><album id="<?php echo $record['num'] ?>" title="<?php echo $record['gallery_name'] ?>" lgPath="gallery/lg/" tnPath="gallery/tn/" description="<?php echo $record['description_of_gallery'] ?>">
<?php foreach ($record['image'] as $upload): ?>
<img src="<?php echo $upload['urlPath'] ?>" />
<?php endforeach ?>
</album>
<?php endforeach ?>