Subversion Repositories SmartDukaan

Rev

Rev 437 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<h4>Shopping Cart</h4>


<table id="mytable" cellspacing="0" summary="Shopping Cart"> 
        <tr>
                <th width= 100></th>
                <th width= 250>Description</th>
                <th width= 70>Price</th>
                <th width= 70>Quantity</th>
        </tr>

#foreach( $item in $items )
    <tr>
        <td>
                <a href="/entity/1000008/">
                        <img src = "http://localhost/images/1000008/Icon.gif" /> 
                </a>
        </td>
        <td>
                <a href="/entity/1000008/">
                        $item.BRAND_NAME $item.MODEL_NUMBER
                </a>
        </td>
        <td>$item.ITEM_PRICE </td>
        <td>$item.ITEM_QUANTITY </td>
        
    </tr>
#end
</table>
                        

    <form class="placeOrder" action="http://localhost:8080/Website/order" method="post">
                <input type="image" alt="Buy This Item" src="http://localhost/images/proceed_check_out.gif">
    </form>