Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/10/2014, 06:06
badnesslombriz
 
Fecha de Ingreso: septiembre-2014
Mensajes: 24
Antigüedad: 9 años, 7 meses
Puntos: 0
enviar datos mediante el método post a un popup

holaa amigos ---
miren mi consulta es la siguiente tengo un formulario

<form id="miformu1" name="miformu1" action="alumnos/busqueda4.php" method="post" >
<table >
<thead><tr><th>*</th><th>id</th><th>Nº documento</th><th>tipo</th><th>nombre</th><th>segundo<br> nombre</th> <th>apellido</th><th>segundo<br>apellido</th><th>usuario</th><th>correo</th><th>celular</th></tr></thead>
<tfoot><tr><td colspan="11"></td>
</tr></tfoot>
<tbody>
<?php

while($fila = mysql_fetch_array($result)){


?>
<tr>
<td >
<input id="idestudiante" type="radio" name="idestudiante" value="<?php echo $fila['id_estudiante'] ?>" checked="checked" onClick="" ></td>
<td WIDTH='1%'><?php echo $fila["id_estudiante"];?></td>
<td WIDTH='1%'><?php echo $fila["n_documento"];?></td>
<td WIDTH='1%'><?php echo $fila["tipo_documento"];?></td>
<td WIDTH='1%'><?php echo $fila["nombre_1"];?></td>
<td WIDTH='1%'><?php echo $fila["nombre_2"];?></td>
<td WIDTH='1%'><?php echo $fila["apellido_1"];?></td>
<td WIDTH='1%'><?php echo $fila["apellido_2"];?></td>
<td WIDTH='1%'><?php echo $fila["usuario"];?></td>
<td WIDTH='1%'><?php echo $fila["correo"];?></td>
<td WIDTH='1%'><?php echo $fila["celular"];?></td>
</tr>
<?php

}
?>
<tr><td></td>
<td colspan="9">

<input id="bootn" type="submit" name="modificar" value="modificar" >
<input id="bootn" type="submit" name="modificar" value="eliminar" >
</td><tr>
</tbody>
</table>
</form>



y lo que quiero esque cuando le de 'modificar' se me abra una ventana (popup) y como se aria para enviar los datos a ese popup .....
gracias !!!!!!