18/07/2013, 15:38
|
| | Fecha de Ingreso: julio-2013 Ubicación: Córdoba
Mensajes: 84
Antigüedad: 11 años, 5 meses Puntos: 0 | |
Problema con ejemplo php de tutorial que no funciona Estoy haciendo el curso de php+mysql de Jesús Conde, el que pesa 1GB de 61 videotutoriales. Estaba practicando con uno de los primeros ejercicios, pero parece ser que algo falla y el ejemplo que ponen no funciona. Lo he intentado arreglar y he conseguido que funcione la parte en la que me devuelve la fecha del pedido, pero las unidades y precios de los productos me saltan errores. Os pongo el código html seguido del php, a ver si alguien pudiera ayudarme a decirme donde esta el error...
html:
Código:
<!DOCTYPE html>
<html>
<head>
<script language="javascript" type="text/javascript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<title> miOrderform </title>
</head>
<body background="fondo.png">
<div id="Layer1"style="position:absolute; width:200px; height:115px; z-index:1; left: 46px; top: 206px;">
<form action="procesarorden.php" method=post>
<table border=0>
<tr bgcolor=#cccccc>
<td width=150><font face="Arial, Helvetica, sans-serif">Libro</font></td>
<td id="" width=15><font face="Arial, Helvetica, sans-serif">Cantidad</font></td>
</tr>
<tr>
<td><font face="Arial, Helvetica, sans-serif">ActionScript</font></td>
<td align=center><font face="Arial, Helvetica, sans-serif">
<input type="text" name="actionqty" size=3 maxlength=3>
</font></td>
</tr>
<tr>
<td><font face="Arial, Helvetica, sans-serif">Photoshop</font></td>
<td align=center><font face="Arial, Helvetica, sans-serif">
<input type="text" name="photoqty" size=3 maxlength=3>
</font></td>
</tr>
<tr>
<td><font face="Arial, Helvetica, sans-serif">Flash MX </font></td>
<td align=center><font face="Arial, Helvetica, sans-serif">
<input type="text" name="flashqty" size=3 maxlength=3>
</font></td>
</tr>
<tr>
<td colspan=2 align=center><input type=submit value="Enviar Pedido"></td>
</tr>
</table>
</form>
</div>
</body>
</html>
php:
Código:
<!DOCTYPE html>
<html>
<head>
<title>Formulario de pedido de libros</title>
</head>
<body>
<h1>Librería Online </h1>
<h2>Resumen del Pedido </h2>
<?php
define("ACTIONPRICE", 100);
define("PHOTOPRICE", 10);
define("FLASHPRICE", 4);
echo "<p>Pedido procesado a las "; // Start printing order
echo date("H:i ");
echo "del día ";
echo date("j ");
echo "de ";
echo date("F ");
echo "del año ";
echo date("Y");
echo "<br>";
echo "<p>Su pedido es el siguiente:";
echo "<br>";
echo $actionqty." ActionScript<br>";
echo $photoqty." Photoshop<br>";
echo $flashqty." Flash MX<br>";
$totalqty = 0;
$totalamount = 0.00;
$totalqty = $actionqty + $photoqty + $flashqty;
$totalamount = $actionqty * ACTIONPRICE + $photoqty * PHOTOPRICE + $flashqty * FLASHPRICE;
echo "<br>\n";
echo "Artículos Pedidos: ".$totalqty."<br>\n";
echo "Subtotal: €";
echo number_format($totalamount, 2);
echo "<br>\n";
$taxrate = 0.10; // local sales tax is 10%
$totalamount = $totalamount * (1 + $taxrate);
$totalamount = number_format($totalamount, 2);
echo "Total incluyendo impuestos: €".$totalamount."<br>\n";
?>
</body>
</html>
|