![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
29/03/2004, 09:52
|
![Avatar de claudiovega](http://static.forosdelweb.com/customavatars/avatar44992_1.gif) | | | Fecha de Ingreso: octubre-2003 Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 21 años, 3 meses Puntos: 11 | |
usa un pagina intermedia que haga esto:
<form method="GET" action="intermedia.php" >
nombre<input type=text name=a>
apellido_paterno<input type=text name=b>
apellido_materno<input type=text name=c>
<input type="submit" value="BUSQUEDA" name="busqueda">
input type="submit" value="ALTA" name="alta">
</form>
en intermedia.php:
<?php
if ($_GET['busquedar'])
header("location: paginacion.php?nombre=".$_GET['a']."");
else
header("location: altas.php?nombre=".$_GET['a']."");
?>
__________________ Dedicado a proyectos web, actualmente desarrollando un sistema de diseño de flyers online muy fácil de usar. |