Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/01/2009, 05:39
envasados
 
Fecha de Ingreso: diciembre-2004
Mensajes: 89
Antigüedad: 19 años, 5 meses
Puntos: 0
No me recoje datos

Buenos días!

Porque no me recoje los datos en esta aplicacion sencilla?

Código HTML:
<!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" />
<title>Documento sin t&iacute;tulo</title>
</head>

<body>
<form id="form1" name="form1" method="post" action="procesarorden.php">
  <table width="150" border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td>ActionScript</td>
      <td><label for="actionqty"></label>
      <input name="actionqty" type="text" id="actionqty" size="5" maxlength="3" /></td>
    </tr>
    <tr>
      <td>Flash</td>
      <td><label for="flashqty"></label>
      <input name="flashqty" type="text" id="flashqty" size="5" maxlength="3" /></td>
    </tr>
    <tr>
      <td>Photoshop</td>
      <td><label for="photoqty"></label>
      <input name="photoqty" type="text" id="photoqty" size="5" maxlength="3" /></td>
    </tr>
    <tr>
      <td colspan="2"><label for="enviar"></label>
        <div align="center">
          <input type="submit" name="enviar" id="enviar" value="Enviar" />
      </div></td>
    </tr>
  </table>
</form>

</body>
</html> 


Código PHP:
<html>
<head>
  <title>Formulario de pedido de libros</title>
</head>
<body>
<h1>Librer&iacute;a Online </h1>
<h2>Resumen del Pedido </h2>


<?php
/* Autor: Jesús Conde
Última modificación:septiembre
Este script procesa un pedido de libros
*/
echo "<p>Orden procesada a las: "// Esto aparecerá en pantalla
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: </p>";

    echo 
$actionqty" ActionScript<br>";
    echo 
$photoqty" Photoshop<br>";
    echo 
$flashqty" Flash MX<br>";
        

?>

</body>
</html>