Skip to content

Instantly share code, notes, and snippets.

@guilleiguaran
Forked from anonymous/gist:643112
Created October 24, 2010 04:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guilleiguaran/643115 to your computer and use it in GitHub Desktop.
Save guilleiguaran/643115 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="Author" content="Dream Deals Inc" />
<meta name="Descripction" content="A Website store" />
<meta name="Keywords" content="shop, store" />
<meta name="Robots" content="index,follow" />
<link href="estilo.css" rel="stylesheet" type="text/css" media="screen" />
<title>Dream Deals</title>
</head>
<body>
<div id="wrapper">
<div id="header">
<div id="enlace">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">My account</a></li>
<li><a href="#">Register</a></li>
<li><a href="#">Help</a></li></ul></div>
<div id="logo">
<h1> <a href="index.html">Dream Deal </a></h1>
<p>...Your dreams come true!</p>
</div>
<div id="img">
Imagen
</div>
<div id="barra">
<ul>
<li><a href="index.html" >Home</a></li>
<li><a href="departments.html" >Departments</a></li>
<li><a href="cart.html">Cart</a></li>
<li><a href="about-us.html" >About Us</a></li>
<li><a href="contacts.html" >Contact</a></li>
<li>
<form action="search.html" method="post" name="form1" class="menu" id="form1">
<label >
<input name="search" type="text" id="search" value="" />
</label>
<label >
<input type="submit" name="go" id="go" value="Search" />
</label>
</form>
</li>
</ul>
</div>
</div>
<div id="barcontent">
<div id="sidebar">
<ul>
<li><a href="#">Tops</a></li>
<li><a href="#">Dresses</a></li>
<li><a href="#">Sweaters</a></li>
<li><a href="#">Outerwear </a></li>
<li><a href="#">Jean Shop </a></li>
<li><a href="#">Bottom</a></li>
<li><a href="#">Clothing</a></li>
<li><a href="#">Shoes casual</a></li>
<li><a href="#">Shoes dressy</a></li>
<li><a href="#">Intimates</a></li>
</ul>
</div>
<div id="content">
<h2>Shopping Bag</h2>
<table width="600" border="0" cellspacing="3" cellspadding="2" align="center">
<tr align="center">
<th>Image</th>
<th>Description</th>
<th>Quantity</th>
<th>Price</th>
<th>Subtotal</th>
</tr>
<?php
$itemsEnCesta = $_SESSION['itemsEnCesta'];
foreach( $itemsEnCesta as $id => $cantidad){
?>
<tr align="center">
<td><img src="img/search1.jpg" width="55" height="70" alt="dress" /></td>
<td> <?php echo $id;?></td>
<td><?php echo $cantidad;?></td>
<td>$25.50</td>
<td>$25.50</td>
</tr>
<?php
}
?>
<!--<tr align="center">
<td><img src="img/search2.jpg" width="55" height="70" alt="Dress" /></td>
<td>Beaded Tube Dress</td>
<td>1</td>
<td>$13.80</td>
<td>$13.80</td>
</tr>
<tr align="center">
<td><img src="img/search3.jpg" width="55" height="70" alt="Dress" /></td>
<td>Floral Makings Dress</td>
<td>1</td>
<td>$25.30</td>
<td>$25.30</td>
</tr>
<tr align="center">
<td><img src="img/search4.jpg" width="55" height="70" alt="Dress" /></td>
<td> Black Knit Mini</td>
<td>1</td>
<td>$28.50</td>
<td>$28.50</td>
</tr>
<tr align="center">
<td><img src="img/N3.jpg" width="55" height="70" alt="top" /></td>
<td> Sateen Broderie Tunic</td>
<td>2</td>
<td>$12.50</td>
<td>$25.00</td>
</tr>-->
</table>
<div id="buy">
<p><a href="#">Remove all</a></p>
<p>Total: $129</p>
<form action="" method="post" name="form" class="menu" id="form">
<label >
<input type="submit" name="go" id="compra" value="Cheackout" />
</label>
</form>
</div>
</div>
</div>
<div id="footer">
<p>Copyright © 2010. All Rights Reserved. Designed by <a href="#">Melipao</a></p>
<p ><a href="#">Privacy Policy</a> <a href="#">Terms of Use</a></p>
<p >
<a href="http://validator.w3.org/check?uri=referer"><img
src="http://www.w3.org/Icons/valid-xhtml10"
alt="Valid XHTML 1.0 Transitional" height="31" width="88" border="0"/></a>
<a href="http://jigsaw.w3.org/css-validator/check/referer">
<img style="border:0;width:88px;height:31px"
src="http://jigsaw.w3.org/css-validator/images/vcss-blue"
alt="¡CSS Válido!" />
</a>
</p>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment