Hello
I have a form with a submit button and would like to open another window to display the results.
The php form selection script contains the following form code:
<form action="<?=$PHP_SELF?>" method=post>
....
.... Selections, etc.
....
</form>
Then I have an if statement like:
<?php
if (submit == submitlist) {
all of the MySQL select query stuff here
}
?>
On submit, the display refreshes and the search form and results appear. I'd rather have another window open and display the results without the form.