Problema al pasar variables en form PHP con Apache
Tengo un gran problema e creado un formulario en dreamweaver los nombres de los archivos son prueba.html y otro es prueba2.php el problema es que cuando le doy valores a el documento prueba.html y mando a llamar a prueba2.php desde el servidor no me da valores a el documento prueba.php solo me salen los nombres de los productos estoy usando appserver la ultima version aquí les dejo como han quedado los documentos, si alguien me puede ayudar por favor ayúdenme, porque no me da los valores en la prueba2.php. La página prueba.html la estoy abriendo del lado del servidor osea desde el navedador porque leí por ahí que así se hace y mi sistema operativo es WINDOWS XP.
---- prueba.html -----
<html>
<head>
<title>Documento sin título</title>
</head>
<body>
<form action="ejemplo.php" method=post>
<table border=0>
<tr bgcolor=#cccccc>
<td width=150>libro</td>
<td width=150>cantidad</td>
</tr>
<tr>
<td> actionscript</td>
<td align=center><input type="text" name="actionqty" size="3" maxlength="3"> </td>
</tr>
<tr>
<td> photoshop</td>
<td align=center><input type="text" name="photoqty" size="3" maxlength="3"> </td>
</tr>
<tr>
<td> flashmx</td>
<td align=center><input type="text" name="flashqty" size="3" maxlength="3"> </td>
</tr>
<tr>
<td colspan=2 align=center><input name="submit" type=submit value="enviar"> </td>
</tr>
</table>
</body>
</html>
----- prueba2.php -----
<?
echo $actionqty."actionscript";
echo $photoqty."photoshop";
echo $flashqty."flashmx";
?>
----- asi es como me queda la pagina final -----
____ actionscript
____ photoshop
____ flashmx
LOS VALORES TENDRIAN QUE SALIRME ANTES DE LAS PRODUCTOS OSEA EN LAS RAYITAS QUE E PUESTO
<form action="ejemplo.php" method="post">esto es lo que me da pero yo quiero que al insertarle valores me ve primero el numero de libros y despues el nombre porfa ayudenme o sera que no esta bien enlazado...</form><form action="ejemplo.php" method="post">porfa ayuda me estoy volviendo loco con esto ya probe de muchas formas y no me sale unos amigos me dicen que el archivo php.ini esta en OFF pero yo lei que esa configuracion es de fabrica y tambien se puede trabajar aunque este el archivo en OFF y no en ON.... NO SE QUE HACER
</form>
---- prueba.html -----
<html>
<head>
<title>Documento sin título</title>
</head>
<body>
<form action="ejemplo.php" method=post>
<table border=0>
<tr bgcolor=#cccccc>
<td width=150>libro</td>
<td width=150>cantidad</td>
</tr>
<tr>
<td> actionscript</td>
<td align=center><input type="text" name="actionqty" size="3" maxlength="3"> </td>
</tr>
<tr>
<td> photoshop</td>
<td align=center><input type="text" name="photoqty" size="3" maxlength="3"> </td>
</tr>
<tr>
<td> flashmx</td>
<td align=center><input type="text" name="flashqty" size="3" maxlength="3"> </td>
</tr>
<tr>
<td colspan=2 align=center><input name="submit" type=submit value="enviar"> </td>
</tr>
</table>
</body>
</html>
----- prueba2.php -----
<?
echo $actionqty."actionscript";
echo $photoqty."photoshop";
echo $flashqty."flashmx";
?>
----- asi es como me queda la pagina final -----
____ actionscript
____ photoshop
____ flashmx
LOS VALORES TENDRIAN QUE SALIRME ANTES DE LAS PRODUCTOS OSEA EN LAS RAYITAS QUE E PUESTO
<form action="ejemplo.php" method="post">esto es lo que me da pero yo quiero que al insertarle valores me ve primero el numero de libros y despues el nombre porfa ayudenme o sera que no esta bien enlazado...</form><form action="ejemplo.php" method="post">porfa ayuda me estoy volviendo loco con esto ya probe de muchas formas y no me sale unos amigos me dicen que el archivo php.ini esta en OFF pero yo lei que esa configuracion es de fabrica y tambien se puede trabajar aunque este el archivo en OFF y no en ON.... NO SE QUE HACER
</form>
1 Respuesta
Respuesta de davidcortesb
1