That was a typo after too many hours staring at the code. Here is the code as it appears on the test page
This works
[/<?php $meeting = $wpdb->get_row("SELECT *, date_FORMAT(startDate, '%M %e, %Y') as newDate FROM sfa_meetings WHERE meetingID = 163");?>
<h3><?php echo $meeting->newDate; ?></h3>
<h2><?php echo $meeting->title; ?></h2>php]
This does not
[code=php:0]<?php $location =$wpdb->get_row("SELECT locID, locName, address, city, zip, drive, locDesc, comments FROM locations WHERE locID =7 ");?>
<h3><?php echo $location->locName; ?> </h3>
Here is subsequent code on that page
<table>
<tr><td>Registration Begins</td><td><?php echo $meeting->regTime; ?></td></tr>
<tr><td>Business Meeting Begins</td><td><?php echo $meeting->busTime; ?></td></tr>
<tr><td>Feature Begins</td><td><?php echo $meeting->featureTime; ?></td></tr>
<tr><td>Adjourn</td><td><?php echo $meeting->adjournTime; ?></td></tr>
<tr><td>Location</td><td><?php echo $location->locName; ?></td></tr>
<tr><td>Address</td><td><?php echo $location->address; ?></td></tr>
<tr><td></td><td><?php echo $location->city; ?>, CA <?php echo $location->zip; ?></td></tr>
<tr><td>Directions</td><td><?php echo $location->drive; ?></td></tr>
<tr><td>Questions?</td><td><?php echo $meeting->email; ?></td></tr>
</table>
The test page is at http://174.123.219.170/~romancew/meeting-test
Thank you!