<table class="table"> <thead> <th>배송확정일</th> <th>주문번호</th> <th>주문자명</th> <th>상품명</th> <th>수량</th> <th>배송</th> </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> </tr> <?php endforeach;?> </tbody> </table>