示例#1
0
		<div class="table-responsive">
			<table class="table table-striped table-hover">
				<thead>
				<tr>
				<th>Автор</th>
				<th>Товар</th>
				<th>Цена товара</th>
				<th>К-во</th>
				<th>Сумма</th>
				</tr>
				</thead>
				
				<tbody>
				<?php 
        $model = new Application_Models_Product();
        $model->show($_SESSION['cart']);
        ?>
				<tr>
				<th></th>
				<th></th>
				<th></th>
				<th class="remark">Итого:</th>
				<th class="remark"><?php 
        echo $_SESSION['total_price'];
        ?>
 грн</th>
				
				</tr>
				</tbody>
			</table>
		</div>