Display Shopping Cart Summary On Each Page | Last Update: 21st July, 2005 Article ID: 56 |
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td class="shoppingCartContents">
<?php
echo $cart->count_contents() . ' Items';
if ($cart->count_contents() > 0) {
echo '<br>Total: ' . $osC_Currencies->format($cart->show_total());
}
?>
</td>
</tr>
</table>
<?php
echo $cart->count_contents() . ' Items';
if ($cart->count_contents() > 0) {
echo '<br>Total: ' . $osC_Currencies->format($cart->show_total()) . '<br>' . $cart->show_weight() . ($cart->show_weight() > 1 ? 'lbs' : 'lb');
}
?>
<?php
echo $cart->count_contents() . ' Items';
if ($cart->count_contents() > 0) {
echo ' Total: ' . $osC_Currencies->format($cart->show_total()) . ' ' . $cart->show_weight() . ($cart->show_weight() > 1 ? 'lbs' : 'lb');
}
?>
Trademark Policy | Copyright Policy | Sitemap Copyright © 2000-2005 osCommerce. All rights reserved. |