Ver Mensaje Individual
  #9 (permalink)  
Antiguo 22/01/2014, 00:42
IIDANIELII
 
Fecha de Ingreso: agosto-2012
Ubicación: mexicali
Mensajes: 34
Antigüedad: 12 años, 7 meses
Puntos: 1
Respuesta: Cambio de get a post

este es el formulario solo puedo hacerlo pos get y quiero hacer lo mismo por post
<form method="get"
target="_self">
HOLA : <input type="text"
name="hola" /><br />
MUNDO : <input type="text"
name="mundo" value=""/><br />
No #: <input type="text"
name="numero" /><br />
<input type="submit"
value="Enviar" />
</form>
<?php
$fichero=fopen ("msg.txt","a"); $hola="$_GET[hola] "; $mundo="$_GET[mundo]"."|"; fputs($fichero,$target); fputs($fichero,$msg); fclose($fichero);
$hola = $_GET['hola'];
$mundo = $_GET['mundo'];
if(isset($numero)){
for($i=0;$i<=$numero;$i++)
echo "$i<li><img src='http://pagina&$i' width='11' height='11 border='0'></li>";
}
?>