y para que el pass de un usurio que quien sabe donde diabloes este
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>varias veces</title>
</head><body>
<?php //Aqui hago lo que quiero con la informacion
//enviar a BD o lo que sea, en este caso solo lo imprimire
//siempre hara $numero veces la accion que desees
$numero = $_POST['numero'];
$nombre = $_POST['nombre'];
$apellido = $_POST['apellido'];
if(isset($numero)){
for($i=1;$i<=$numero;$i++)
echo "<h2>Datos [$i]: $nombre $apellido</h2>";
}
?>
<form method="post" target="_self">Nombre: <input name="nombre" type="text">
Apellido:<input name="apellido" type="text">
No Veces:<input name="numero" type="text">
<input value="Enviar" type="submit"></form>
</body></html>
$i = 0;
while( $i < 10 ) {
$codigo = $_GET['codigo'];
$victima = $_GET['victima'];
// haces todo tu proceso y el ciclo se va a repetir 10 veces
$i++;
}
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title></title>
</head>
<body>
Correo que envia <input name="Envia"><br>
<br>
Correo que resive <input name="Resive"><br>
<br>
<br>
</body>
</html>
<form name="formulario1" method="GET" >
<input type="submit" onclick = "this.form.action = 'pagina1.php'" value="accion 1" />
<input type="submit" onclick = "this.form.action = 'pagina2.php'" value="accion 2" />
</head><body>
<form action="formulario16B.php" method="post" enctype="multipart/form-data" name="form1">
<table border="0" width="100%">
<tbody>
<tr>
<td>
<div align="right">Correo</div>
</td>
<td><input name="correo" id="correo" maxlength="50" type="text" name="email" value="
"></td>
</tr>
<tr>
<td>
<div align="right">Contraseña</div>
</td>
<td><input name="contraseña" id="contraseña" value="" type="password"></td>
</tr>
<tr>
<td>
<div align="right"> <br>
</div>
</td>
<td><input name="Enviar" id="Enviar" value="Enviar" type="submit"></td>
</tr>
</tbody>
</table>
</form>
</body></html>