Link to home
Start Free TrialLog in
Avatar of Imaginx
Imaginx

asked on

Can a submit button open multiple windows?

I have a form in a php doc that opens
<form target="_blank" method="POST" action="voucher_verify.php?id=3">
...  input fields ....
<input name="voucher_submit" type="submit" value="Print Voucher">
</form>

Upon clicking submit, the form opens a new window that inserts the information into a sql db, and creates a form to be printed.
However, the page where the submit button resides stays open.

I want to to work so that when you click submit, it opens the new window the way it does now, but also redirect the current page back to anything else ... (i.e. index.php)
I tried some java, which is probably the best method - I'm just doing it wrong.

I tried something along the lines of <input name="voucher_submit" type="submit" onclick="index.php" value="Print Voucher">

Please help
Avatar of Imaginx
Imaginx

ASKER

I may not have been completely clear. My title says "Can a submit button open multiple windows"

I don't want to open multiple windows. I want to open a new window & redirect the page on the current window.

-S
Yes, very easily.
<html>
<body>

<script type="text/javascript">
w=window.open();
w.document.open();
w.document.write("<h1>Hello World!</h1>");
w.document.close();

window.location="http://www.yahoo.com/";

</script>

</body>
</html>

Open in new window

All you need to do is add the javascript to the submit button as the action.
ASKER CERTIFIED SOLUTION
Avatar of Marco Gasi
Marco Gasi
Flag of Spain image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Imaginx

ASKER

Here is the actual line pulled straight out of the php file.


It is properly opening the new window, but not replacing the current one... Can you see what I have wrong here ??
<?php
echo "<form name=\"voucher_print\" target=\"_BLANK\" method=\"POST\" action=\"intake_print.php?id=2\">";				
echo "<input type=\"hidden\" name=\"first_name\" value=\"$first_name\">";
echo "<input type=\"hidden\" name=\"last_name\" value=\"$last_name\">";
echo "<p><center>If the above information is correct, click print. Otherwise, click Back and correct the information.";
echo "<p><center><input type=button value=\"Back\" onClick=\"history.go(-1)\">";
echo "&nbsp&nbsp<input type=\"submit\" onclick=\"location.replace('index.php');\" name=\"submit_a\" value=\"Print Voucher\"><form><p>";
?>

Open in new window

The only error I can see is tha missing end tag for form in line seven: you write <form> instead then </form>
Avatar of Imaginx

ASKER

Good call, but that shouldn't stop the java from redirecting ... No ??
Yes, I only said that was the only error I saw... You could use firebug (if you use firefox) to see errors. My test code works fine:

<?php
echo "<form target=\"_blank\" action=\"realwriting.php\" method=\"post\">";
echo "<input type=\"submit\" id=\"submit\" name=\"submit\" onclick=\"location.replace('temptemp.php');\" value=\"Submit\" />";
echo "</form>";
?>

This open a new tab in firefox and change the actual tab to temptemp.php :-(
Avatar of Imaginx

ASKER

All the employees that use this app are using IE.
I work on a Mac, and use Safari.

The java worked for me on my Mac using Firefox, and even on my Mac when I run IE in Parallels .... Just doesn't work with Safari ... ??

Either way, it achieves what I need - Thanks !!
Glad problem is solved. Only for your information, I've tested with Safari for Windows and it works also. So it seems Mac prevent for some reason this script to work! Good work.
I intended: all the best for your work