[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/) To

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