[PHP] Creating pop-up window and passing variable to it?

2002-06-04 Thread Igor Portnoy
How can I create a pop up window in my index.php (for example) when user clicks on the link and pass value of the variable from my index.php to this new window?

RE: [PHP] Creating pop-up window and passing variable to it?

2002-06-04 Thread Martin Towell
] Creating pop-up window and passing variable to it? How can I create a pop up window in my index.php (for example) when user clicks on the link and pass value of the variable from my index.php to this new window? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: RE: [PHP] Creating pop-up window and passing variable toit?

2002-06-04 Thread Jason Soza
To: [EMAIL PROTECTED] Subject: [PHP] Creating pop-up window and passing variable to it? How can I create a pop up window in my index.php (for example) when user clicks on the link and pass value of the variable from my index.php to this new window? -- PHP General Mailing List (http

RE: RE: [PHP] Creating pop-up window and passing variable to it?

2002-06-04 Thread Martin Towell
- From: Jason Soza [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 10:19 AM To: [EMAIL PROTECTED] Cc: 'Igor Portnoy' Subject: Re: RE: [PHP] Creating pop-up window and passing variable to it? Couldn't you also do: a href=foobar.php?var1=1var2=2 target=_blankLink/a I think you can

Re: [PHP] Creating pop-up window and passing variable to it?

2002-06-04 Thread Curtis Gordon
This is how I do it. I fire a javascript when the link is clicked, which in turn submits a form targetting the page you openned (named of course). function donewpage(){ open window named mywindow submit form targetting mywindow blah blah blah } sorry to be so brief but the hockey