<?php
  /* STEP 1: LOAD RECORDS - Copy this PHP code block to the TOP of your page BEFORE anything else. */
  require_once "d:/hosting/member/acraig/site1/cmsadmin/lib/viewer_functions.php";

  list($categoryRecords, $categoryMetaData) = getRecords(array(
    'tableName'   => 'category',
  ));

  list($marketplaceRecords, $marketplaceMetaData) = getRecords(array(
    'tableName'   => 'marketplace',
  ));

  list($marketplace_couponsRecords, $marketplace_couponsMetaData) = getRecords(array(
    'tableName'   => 'marketplace_coupons',
  ));

  list($marketplace_classifiedsRecords, $marketplace_classifiedsMetaData) = getRecords(array(
    'tableName'   => 'marketplace_classifieds',
  ));

  $categoryItems = array_merge($marketplaceRecords, $marketplace_couponsRecords, $marketplace_classifiedsRecords);


?><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>

	<head>
		<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
		<meta name="generator" content="Adobe GoLive">
		<title>Untitled Page</title>
		<link href="../Styles/CPstyle.css" rel="stylesheet" type="text/css" media="all">
		<style type="text/css" media="screen"></style>
	</head>
	<body bgcolor="#ffffff">
		<br>
		<br>
		<table width="642" border="0" cellspacing="0" cellpadding="0">
			<tr height="31">
				<td width="50" height="31"></td>
				<td width="556" height="31" background="graybar.jpg">&nbsp;&nbsp;&nbsp;</td>
				<td width="36" height="31"></td>
			</tr>
		</table>

	<?php foreach ($categoryRecords as $category): ?>

                <!-- category header -->
		<table width="642" border="0" cellspacing="0" cellpadding="0">
			<tr height="31">
				<td width="50" height="31"></td>
				<td width="556" height="31" background="purple.jpg">&nbsp;&nbsp;&nbsp;&nbsp;<span class="headerhometext"><?php echo $category['name'] ?></span></td>
				<td width="36" height="31"></td>
			</tr>
		</table>

                <!-- category item -->
		<table width="642" border="0" cellspacing="0" cellpadding="0">
			<tr height="31">
				<td width="50" height="31"></td>
				<td width="556" height="31" background="botgray.jpg">

<?php foreach ($categoryItems as $item): ?>
  <?php if (!preg_match("/\t{$category['name']}\t/", $item['cats'])) { continue; } ?>

					<table width="543" border="0" cellspacing="0" cellpadding="0" height="31">
						<tr height="23">
							<td width="19" height="23"></td>
							<td width="242" height="23"><a href="<?php echo $item['_link'] ?>"><span class="links"><b><?php echo $item['title'] ?></b></span></td>
							<td width="37" height="23"><img src="check.jpg" width="34" height="23" /></td>
							<td width="102" height="23"></td>

							<td width="34" height="23"></td>
							<td width="71" height="23"></td>
							<td width="38" height="23"></td>
						</tr>
					</table>
<?php endforeach ?>
				</td>
				<td width="36" height="31"></td>
			</tr>
		</table>
		<?php endforeach; ?><br/>
		<br>
		<br>
		<br>
	</body>
		</html>
