<h4>我预定会议</h4>

                </caption>

                <tr>
                    <th>会议名</th>
                    <th>会议地点</th>
                    <th>会议日期</th>
                    <th>会议时间</th>
                    <th>操作</th>
                </tr>

                <?php 
$row = new meeting();
for ($i = 0; $i < $num; $i++) {
    $row->initMeeting($re[$i]);
    ?>



                <tr>
                    <td><?php 
    echo $row->getName();
    ?>
</td>
                    <td><?php 
    echo $row->getRid();
    ?>
</td>
                    <td><?php 
    echo $row->getDate();