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.
20 lines
537 B
20 lines
537 B
<?php echo validation_errors()?>
|
|
<?=form_open()?>
|
|
|
|
<h5>영화제목</h5>
|
|
<input name="hu_name" value="<?=element('mov_name', $view)?>"><br>
|
|
|
|
<h5>관객수</h5>
|
|
<input name="ord_name" value="<?=element('mov_aud', $view)?>">
|
|
|
|
<h5>제작비</h5>
|
|
<input name="pay" value="<?=element('mov_money', $view)?>">
|
|
|
|
<h5>개봉일자</h5>
|
|
<input name="ord_num" value="<?=element('mov_open', $view)?>">
|
|
|
|
<h5>줄거리</h5>
|
|
<input name="ord_count" value="<?=element('mov_text', $view)?>">
|
|
|
|
<button type="submit">등록하기</button>
|
|
<?=form_close()?>
|