I have a popup window with a form:
The popup window is opened like this:
<SCRIPT LANGUAGE=javasc ript>
window.open('pr imos.html', 'primos', config='height= 300, width=400')
</SCRIPT>
The form on the popup window is this:
<form action="primos. php" method="POST">
Buscar los primos entre 1 y
<input type="text" size="7" name="max" value="1000"><b r>
<input type="submit" name="start" value="Start">
</form>
How can I get the form to send the info to "primos.php " and open it in
the original window?
Thanks in advance,
Philippe
The popup window is opened like this:
<SCRIPT LANGUAGE=javasc ript>
window.open('pr imos.html', 'primos', config='height= 300, width=400')
</SCRIPT>
The form on the popup window is this:
<form action="primos. php" method="POST">
Buscar los primos entre 1 y
<input type="text" size="7" name="max" value="1000"><b r>
<input type="submit" name="start" value="Start">
</form>
How can I get the form to send the info to "primos.php " and open it in
the original window?
Thanks in advance,
Philippe
Comment