<a href="<?=base_url('/movie/form')?>"> 등록하기</a>
<table class="table">
    <tbody>
    <?php foreach ($list as $movie):?>
    <tr>
        <td>제작비:<?=$movie['movie_money']?>원</td>
        <td>영화명:<?=$movie['movie_name'] ?></td>
        <td>누적관객수:<?=$movie['audience']?>명</td>
    </tr>
    <?php endforeach; ?>
    </tbody>
</table>