<?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($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',
  ));
  
     
?><!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 $mergedArray = array_merge_recursive($marketplaceRecords, $marketplace_couponsRecords, $marketplace_classifiedsRecords); ?>
		<?php $lastCategory = ""; ?>
	<?php foreach ($mergedArray as $record): ?>
    <?php if ($record['cats'] != $lastCategory): ?><?php $lastCategory = $record['cats']; ?>
		<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 $record['cats'] ?></span></td>
			<?php endif ?>
				<td width="36" height="31"></td>
			</tr>
		</table>
		<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">
					<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 $record['_link'] ?>"><span class="links"><b><?php echo $record['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>
				</td>
				<td width="36" height="31"></td>
			</tr>
		</table>
		<?php endforeach; ?><br>
		<br>
		<br>
		<br>
	</body>
		</html>
