</br>
<table id="table_id" class="display table table-striped table-condensed table-hover">
    <thead style="font-size:0.8em;text-transform:uppercase">
        <tr>
            <th>Date</th>
            <th>People</th>
            <th>Party Size</th>
            <th>Attending?</th>
            <th>Email</th>
            <th>Notes</th>
        </tr>
    </thead>
    <tbody>
<?php 
// Output data of each row
while ($row = $db->read_row($result)) {
    ?>
        <tr>
            <td><?php 
    echo $row["date_time"];
    ?>
</td>
            <td data-priority="1"><?php 
    echo $row["people"];
    ?>
</td>
            <td data-priority="1"><?php 
    echo $row["partysize"];
    ?>
</td>
            <td><?php