You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
366 B
12 lines
366 B
<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>
|