Hola estoy aprendiendo PHP con unos videotutoriales y tambien viene con cursos de SQL asi que esta completo tiene PHP y SQL basico y avanzado.
Pero no me sale bien unos codigos el objetivo de el code PHP que les mostrare es que yo tengo un formulario HTML en el cual las personas solicitan una cantidad estimada de libros y no lo termine de hacer por q vi q tenia unos errores por que no aparece la cantidad que las personas asignan por ejemplo tengo:
Action Script "5"
Photosohp "2"
Flash "9"
Pero cuando llama a procesarejemplo.php solo me aparece el nombre Action Scrp., Photoshop y Flash pero no me aparece la supuesta cantidad que ingresaron aqui
Me podrian ayudar.
les dejo el code en HTML y PHP:
PHP:
<!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=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<?
/*Creado por ---acesino---
*/
echo "<p>Su pedido a sido procesado";//procesando
echo date ("j,Y");
echo "<br>";
echo $actionqty." Action Script<br>";
echo $photoqty." Photoshop<br>";
echo $flashqty." Flash<br>";
?>
</body>
</html>
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=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="procesarejemplo.php">
<table width="261" border="0">
<tr>
<td width="88">Producto</td>
<td width="163">Cantidad</td>
</tr>
<tr>
<td>Action Script </td>
<td><label>
<input name="actionqty" type="text" id="actionqty" size="5" />
</label></td>
</tr>
<tr>
<td>Photoshop</td>
<td><input name="photoqty" type="text" id="photoqty" size="5" /></td>
</tr>
<tr>
<td>Flash</td>
<td><input name="flashqty" type="text" id="flashqty" size="5" /></td>
</tr>
<tr>
<td> </td>
<td><label>
<input type="submit" name="Submit" value="Enviar" />
</label></td>
</tr>
</table>
</form>
</body>
</html>