[PHP] Launching a Browser Win with PHP - Is it possible?

2002-10-14 Thread Monty
For a form that allows people to upload image files to the server, I'd like to pop open a small browser window with an Uploading... message once someone clicks on Submit button. Then I'd like the window to automatically close once the process is done and the main browser window refreshes. Can

Re: [PHP] Launching a Browser Win with PHP - Is it possible?

2002-10-14 Thread @ Edwin
Hello, Just some ideas... First, I don't think you can pop open a small browser window with PHP--use Javascript. With Javascript you can define the size of the window AND you can make it disappear (after the main browser window refreshes) by using onBlur() then window.close() command. Of