to help troubleshoot this, I'll need some additional info.
on your page, change the code for displaying the past shows:
<h2>Past shows</h2>
<?php do { ?>
<table width="100%" border="0">
<tr>
<td><a href="FeaturedExhibitsDetail.php?event_id=<?php echo $row_rsFeatListpast['event_id']; ?>"><?php echo $row_rsFeatListpast['feat_title']; ?></a></td>
</tr>
</table>
<?php } while ($row_rsFeatListpast = mysql_fetch_assoc($rsFeatListpast)); ?>
to:
<h2>Past shows: <?php echo("SQL: ".$query_rsFeatListpast); ?></h2>
<?php do { ?>
<table width="100%" border="0">
<tr>
<td><a href="FeaturedExhibitsDetail.php?event_id=<?php echo $row_rsFeatListpast['event_id']; ?>"><?php echo $row_rsFeatListpast['feat_title']; ?>||<?php echo $row_rsFeatListpast['calendar_event.date_start']; ?></a>calendar_event.date_start</td>
</tr>
</table>
<?php } while ($row_rsFeatListpast = mysql_fetch_assoc($rsFeatListpast)); ?>
and the code for showing upcoming shows:
<h2>upcoming shows</h2>
<?php do { ?>
<table width="100%" border="0">
<tr>
<td><a href="FeaturedExhibitsDetail.php?event_id=<?php echo $row_rsFeatListup['event_id']; ?>"><?php echo $row_rsFeatListup['feat_title']; ?></a></td>
</tr>
</table>
<?php } while ($row_rsFeatListup = mysql_fetch_assoc($rsFeatListup)); ?>
to:
<h2>upcoming shows: <?php echo("SQL: ".$query_rsFeatListup); ?></h2>
<?php do { ?>
<table width="100%" border="0">
<tr>
<td><a href="FeaturedExhibitsDetail.php?event_id=<?php echo $row_rsFeatListup['event_id']; ?>"><?php echo $row_rsFeatListup['feat_title']; ?>||<?php echo $row_rsFeatListup['calendar_event.date_start']; ?></a></td>
</tr>
</table>
<?php } while ($row_rsFeatListup = mysql_fetch_assoc($rsFeatListup)); ?>
this will show the dates for the shows and the SQL that is executed at run time for the recordsets.


