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>