Пример #1
0
  </tr>

  </tr>
</table>



<div class="buttons">  
<input name="Return to Cart" type="submit" value="Continue Shopping" id="continue_shopping" />
<input name="Continue to Checkout" type="submit" value="Place Order"/>
</div>
</form>
<?php 
} else {
    if ($auth) {
        $no_of_items = ADAO::getItemsCountInCart($_SESSION['id']);
        if ($no_of_items == 0) {
            ?>
 <table width="600" cellspacing="0" class="basket-table">
<tr>
    <td colspan="7" align="center"><strong>There are 0 items in your Basket.<br />Click  <a href="index.php">here</a> to continue Shopping</strong></td>
   
  </tr>	
	</table>
 <?php 
        } else {
            $shipping_method = ADAO::getAllShippingMethods();
            $cart = ADAO::getUserCartItemIdDetails($_SESSION['id']);
            $content_Array = "";
            foreach ($cart as $index => $cartItems) {
                $content_Array .= $cartItems['data'] . ",";