|
4/17 |
2002/12/12 [Uncategorized] UID:26795 Activity:high |
12/11 Hi, I'm trying to write an HTML feedback form that opens a new window to confirm submission, but does not change the current window. I've tried <form method="post" action="javascript:void window.open('myformprocessor.php')"> which opens a new window properly, but the post variables aren't available. Is there a different way to do this? \_ <form method="post" action="myformprocessor.php" target="_blank"> --dbushong |