![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
11/04/2007, 11:54
|
| | Fecha de Ingreso: octubre-2006
Mensajes: 17
Antigüedad: 18 años, 3 meses Puntos: 0 | |
Array en popup Quiero abrir el fichero mande2.php mediante un popup, solo que esta esperando un arreglo de otro fichero (mande.php), como puedo enviarlo?
este seria mi codigo de mande.php
<html>
<head>
</head>
<body>
<form name="forma" method="POST" action="">
<input type="checkbox" name="jaja[]" value="1">Valor1
<input type="checkbox" name="jaja[]" value="2">Valor2
<input type="checkbox" name="jaja[]" value="3">Valor3
<input type="button" value="Enviar" onClick="window.open('mande2.php','cualquiera', 'width=300,height=300,left=100,top=100,scrollbars= no,menubars=no,statusbar=NO,status=NO,resizable=YE S,location=NO');">
</form>
</body>
</html> |