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.

11 lines
366 B

  1. <a href="<?=base_url('/movie/form')?>"> 등록하기</a>
  2. <table class="table">
  3. <tbody>
  4. <?php foreach ($list as $movie):?>
  5. <tr>
  6. <td>제작비:<?=$movie['movie_money']?>원</td>
  7. <td>영화명:<?=$movie['movie_name'] ?></td>
  8. <td>누적관객수:<?=$movie['audience']?>명</td>
  9. </tr>
  10. <?php endforeach; ?>
  11. </tbody>
  12. </table>