Berkeley CSUA MOTD:Entry 26795
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/04/17 [General] UID:1000 Activity:popular
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