
18/04/2004, 10:03
|
| | Fecha de Ingreso: marzo-2004 Ubicación: $_SERVER['DOCUMENT_ROOT'] :-)
Mensajes: 100
Antigüedad: 21 años Puntos: 0 | |
No problema,
Tambien el input submit soporta el target.
<input type="submit" value="procesar formulario" target="ventanade2_php">
Y si quisieras primero procesar (validar) el formulario y luego pasarlo a 2.php, entonces tendrias que apoyarte con javascript.
<?php
if ($resultadodelproceso=true) {
?>
<script>
ventana2.location("2.php?var1=valor1");
</script>
<?php
}
?>
Algo por el estilo
__________________ -- girls.code.better -- |