Hi,
I'm creating a page which should be able to print out already selected info. So in the following code I would like to print the value of the cart-package name.
Hopefully you can help me out.
I'm creating a page which should be able to print out already selected info. So in the following code I would like to print the value of the cart-package name.
Code:
<div class="content right" id="right-content">
<div class="end">
<!-- CART -->
<div class="cart" id="cart">
<h3>Order</h3>
<ul>
<li id="cart-hardware">
<ul>
<li id="cart-package">
<p class="name">[paket]</p>
<p class="sum month">[sum]</p>
</li>
<li id="cart-box">
<p class="name">[box]</p>
<p class="sum one-time">[sum]</p>
</li>
</ul>
</li>
</ul>
<br class="clr" />
</div>
</div>
</div>
Hopefully you can help me out.