<a href="<?=base_url('order/form')?>">신규등록하기</a> <table class="table"> <thead> <tr> <th>배송확정일</th> <th>주문번호</th> <th>주문자명</th> <th>상품명</th> <th>수량</th> <th>배송</th> <th>수정</th> <th>삭제</th> </tr> </thead> <tbody> <?php foreach ($list as $od):?> <tr> <td><?=date('Y-m-d', strtotime($od['time']))?></td> <td><a href="<?=base_url('order/view/').$od['idx']?>"><?php echo $od['order_num']?></a></td> <td><?=$od['order_hu_name']?></td> <td><?=$od['order_name']?></td> <td><?=$od['count']?></td> <td><?=$od['status']?></td> <td><a href="<?=base_url('order/form/').$od['idx']?>">수정</a></td> <td><a href="<?=base_url('order/remove/').$od['idx']?>">삭제</a></td> </tr> <?php endforeach;?> </tbody> </table>