I have created an html page to collect information (username, password) to be passed to a php page for validation. When the user clicks "Submit" I would like the collected information to display in a separate pop-up window leaving the parent window intact below. How would I modify ... <input type="submit" value="submit"> to do what I'm trying to do? Or am I going about this all wrong? Open to suggestions. Thanks in advance.
It's not valid XHTML, I believe, but the following should work: <form action="file.php" target="_blank" method="post"> HTML:
Thank you for the reply. I guess I should've been more specific. I would like the window to open small, maybe 200px x 200px, as I could with a window.open(); javascript command. Any other suggestions ... anyone?