01/12/2004, 09:26
|
| | Fecha de Ingreso: diciembre-2004
Mensajes: 2
Antigüedad: 19 años, 11 meses Puntos: 0 | |
Formulario manda las variables Hola, no consigo hacer una cosatan sencilla como que las variables que se introducen en un formulario me lleguen al archivo incluir.php
El codigo del formulario es este
!FORMULARIO.htm>
<form action="incluir.php" method="post">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Documento sin título</title>
</head>
<body>
<table width="200" border="0" align="center">
<tr>
<th bgcolor="#CC0000" scope="row">texto</th>
</tr>
<tr>
<th scope="row"><form name="form1" >
<textarea name="texto" id="texto"></textarea>
<input type="submit" name="Submit" value="Enviar">
</form></th>
</tr>
</table>
</body>
</html>
y el de incluir PHP es el siguiente:
<?PHP
//abre un archivo y escribe en él
$archivo = fopen("datos.inc" , "w");
if ($archivo) {
fputs ($archivo, $texto);
}
fclose ($archivo);
echo "informacion enviada".$texto
?>
Aque se debe que no llegue la variable texto?
Muchas gracias |