Thanks a million guys. This works perfectly! I am not sure if there is an easier way to avoid having to put in so many echos, but I had to indent everything in order to make sure my table did not break.
echo "<table width='100%'>";
echo "<tr>";
echo "<td class='room_no'>Room No.</td>";
echo "<td class='cont_info'>Contact Info</td>";
echo "</tr>";
echo "<tr>";
echo "<td> </td>";
echo "<td> </td>";
echo "</tr>";
foreach($page->children as $child) {
echo "<tr>";
echo "<td class='room_no'>{$child->title}</td>";
echo "<td class='cont_info'>";
if($child->ten_pri_name) { echo "<strong>{$child->ten_pri_name}</strong><br />"; }
if($child->ten_first_name) { echo "<strong>{$child->ten_first_name}"; }
if($child->ten_last_name) { echo " {$child->ten_last_name}<br /></strong>"; }
if($child->ten_website) { echo "<a href='{$child->ten_website}'>view website</a><br />"; }
if($child->ten_email) { echo "<a href='mailto:{$child->ten_email}'>email {$child->ten_first_name}</a><br />"; }
if($child->ten_phone_no) { echo "{$child->ten_phone_no}<br />"; }
if($child->Media_Business) { echo "{$child->Media_Business}"; }
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td> </td>";
echo "<td> </td>";
echo "</tr>";
}
echo "</table>";