Re: [PHP] Opening new browser window

2003-09-19 Thread Marek Kilimajer
form target=searchwindow Rich Fox wrote: I would like to open a new browser window from within my php script (edit.php), a window in which another php page is run (search.php). search.php should be able to receive $_POST vars etc. from edit.php. I am not sure that the javascript solution to

Re: [PHP] Opening new browser window

2003-09-19 Thread Rich Fox
And if you are not in a form? My current code is: a href=search.php onClick=return popup(this, 'Industry','?ID=$companyIDType=Industry') img src=images/Plus.gif /a where popup is my javascript function. But as I said below, the popup doesn't work as expected and I do not want to use

Re: [PHP] Opening new browser window

2003-09-19 Thread R'twick Niceorgaw
Rich Fox said the following on 9/19/2003 12:33 PM I would like to open a new browser window from within my php script (edit.php), a window in which another php page is run (search.php). search.php should be able to receive $_POST vars etc. from edit.php. I am not sure that the javascript solution

Re: [PHP] Opening new browser window

2003-09-19 Thread Brent Baisley
Why use a javascript to create a new window? Any link can be directed to a new window with a simple target=. a href=search.php?ID=$companyIDType=Industry target=Industry Industry would be the reference name of the window. For instance, if you wanted to refer to it from another window. PHP is

RE: [PHP] Opening new browser window.

2002-03-13 Thread Caspar Kennerdale
embed the javascript within the php using echo or print -Original Message- From: Way, Paul [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 16:26 To: '[EMAIL PROTECTED]' Subject: [PHP] Opening new browser window. Is there anyway that I can open a new browser window in php,