[PHP] POPUP window in PHP

2006-10-09 Thread Captain
for this..Thanks in advance. ---Prabhakaran -- View this message in context: http://www.nabble.com/POPUP-window-in-PHP-tf2408946.html#a6714594 Sent from the PHP - General mailing list archive at Nabble.com.

Re: [PHP] POPUP window in PHP

2006-10-09 Thread Max Belushkin
Captain wrote: hi, i want to do YES/NO confirmation (like POPUP). If YES, it will upload a file PHP is server-side, not client-side. You can have the confirmation passed as a GET variable in a two-step process for example, i.e. first show a confirmation form if $_GET[confirm] is not set,

Re: [PHP] POPUP window in PHP

2006-10-09 Thread Captain
form if $_GET[confirm] is not set, else check $_GET[confirm] and process the uploaded file. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- View this message in context: http://www.nabble.com/POPUP-window-in-PHP-tf2408946

Re: [PHP] POPUP window in PHP

2006-10-09 Thread Max Belushkin
Captain wrote: My requirement is, i want to upload one file. i am checking whether it exists or not in Server side. Your script will have to work in stages, generating a page and sending to the browser on each stage: 1. Make a form to upload a file for the user to submit - this is just

Re: [PHP] POPUP window in PHP

2006-10-09 Thread Richard Lynch
On Mon, October 9, 2006 6:22 am, Captain wrote: hi dude, actually, i am new to php. i am not understanding clearly. plz explain it clearly. You can't do what you want. More importantly, you should not even WANT to do what you want! There are several reasons for this, and they are rather

[PHP] popup window from php page

2006-06-08 Thread William Stokes
Hello, How do I open a popup window from php code when a web page is loaded? Does it require javascript usage? Thanks -Will -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] popup window from php page

2006-06-08 Thread Rabin Vincent
On 6/8/06, William Stokes [EMAIL PROTECTED] wrote: How do I open a popup window from php code when a web page is loaded? Does it require javascript usage? Yes, this needs to be done with Javascript. Google will help you on this. Rabin -- PHP General Mailing List (http://www.php.net

Re: [PHP] popup window from php page

2006-06-08 Thread Andrei
What PHP does is it outputs HTML code as result. Any other functionality regarding browser commands (such as opening popups) are done using javascript. Andy William Stokes wrote: Hello, How do I open a popup window from php code when a web page is loaded? Does it require

[PHP] popup window under php

2001-10-04 Thread Tim Sawyer
I want to open a popup window under php control. So lets say I have an if statement which if true opens the window. if ($something) { JavaScript:window.open(test.php,blah...); } Guess I'm saying that I want to call a Javascript function without the user clicking on anything. -- PHP

Re: [PHP] popup window under php

2001-10-04 Thread Naintara Jain
] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED] - Original Message - From: Tim Sawyer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 05, 2001 12:46 AM Subject: [PHP] popup window under php I want to open