Hello,
I found several posts about headers and how to target them (_blank, etc.).
I couldn't find an answer to my problem though.
I need to be able to open 2 different pages at once, when the submit button it clicked. This is because i'm working with frames.
I tried to put in a JS code twice, each time with different target, but didn't work:
echo "<SCRIPT LANGUAGE=\"JavaScript\">
window.topFrame.location='header_in.php';
</SCRIPT>";
echo "<SCRIPT LANGUAGE=\"JavaScript\">
window.mainFrame.location='you.php';
</SCRIPT>";
Is there a way to do it, or should I give up frames all together?
Thanks,