
18/03/2013, 17:18
|
| | Fecha de Ingreso: octubre-2011 Ubicación: Tierra
Mensajes: 64
Antigüedad: 13 años, 4 meses Puntos: 0 | |
Respuesta: pasar valor de varios input text a php POST pues mira cree el input text:
<form method="POST" action="php.php">
<input type="text" name="descripcion[]">
<input type="submit" value ="subir" name="upload">
</form>
y
el php.php asi:
if(isset($_POST['upload']))
{
echo $_POST['descripcion'];
}
y sale este error:
Notice: Array to string conversion in
Última edición por juanvc123; 18/03/2013 a las 17:24 |