Ver Mensaje Individual
  #5 (permalink)  
Antiguo 29/06/2012, 09:12
Avatar de cesarin3134
cesarin3134
 
Fecha de Ingreso: enero-2012
Ubicación: Milan
Mensajes: 97
Antigüedad: 12 años, 3 meses
Puntos: 20
Respuesta: dreamwaver y php error

este es todo el codigo della cabecera :

Código PHP:
Ver original
  1. <div id="cabecera">
  2.     <h1><strong>TUTORIAL CARRITO DE COMPRA EN PHP Y MYSQL</strong></h1>
  3.    
  4.     <!-- Información de la cesta-->
  5. <div id="totales" style="float:right;padding:10px 25px 0 100px; background-color: #CECECE";>
  6. * * * * <table>
  7. * * * * * * <tr align="right">
  8. * * * * * * * * <td><strong>Cantidad de Productos:</strong></td>
  9. * * * * * * * * <td align="left">
  10.  
  11.                     <?php
  12. * * * * * * * * * * * * * * if(isset($_SESSION['cantidadTotal'])) {
  13. * * * * * * * * * * * * * * * * echo $_SESSION['cantidadTotal'];
  14. * * * * * * * * * * * * * * }else{
  15. * * * * * * * * * * * * * * * * echo "Carro vacío";
  16. * * * * * * * * * * * * * * * * $_SESSION['costoTotal'] = 0;
  17. * * * * * * * * * * * * * * }
  18. * * * * * * * * * * * * ?>
  19. * * * * * * * * </td>
  20. * * * * * * </tr>
  21. * * * * * * <tr align="right">
  22. * * * * * * * * <td><strong>Total Compra:</strong></td>
  23. * * * * * * * * <td><?php echo $_SESSION['costoTotal'];?> €</td>
  24. * * * * * * </tr>
  25. * * * * * * <!-- Opción para que el usuario pueda ver en todo momento la cesta de la compra -->
  26. * * * * * * <tr>
  27. * * * * * * * * <td align:right colspan=2>Ver <a href="carro.php?action=mostrar" title='lista de compra'>cesta de la compra</a></td>
  28. * * * * * * </tr>
  29. * * * * </table>
  30. * * </div>
  31. <!-- FIN CESTA-->
  32. </div>