RE: [PHP-WIN] window.open and php...

2002-05-02 Thread Sandeep Murphy
thnx guys.. works now..:) -Original Message- From: Mike Flynn [mailto:[EMAIL PROTECTED]] Sent: quinta-feira, 2 de Maio de 2002 16:46 To: Sandeep Murphy; [EMAIL PROTECTED] Subject: RE: [PHP-WIN] window.open and php... Ok.. try this.. your commas, quotation marks, plus marks, etc are

RE: [PHP-WIN] window.open and php...

2002-05-02 Thread Mike Flynn
Ok.. try this.. your commas, quotation marks, plus marks, etc are all messed up. var winMy; function ope(page,wid,hgt){ winMy = window.open(page, 'winMy','height='+hgt+',width='+wid+',channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,t

RE: [PHP-WIN] window.open and php...

2002-05-02 Thread Sandeep Murphy
suggestions??? Thnx again.. Sands -Original Message- From: Mike Flynn [mailto:[EMAIL PROTECTED]] Sent: quinta-feira, 2 de Maio de 2002 16:33 To: Sandeep Murphy; [EMAIL PROTECTED] Subject: Re: [PHP-WIN] window.open and php... Ummm are we talking JavaScript or PHP here? Opening windows is a

Re: [PHP-WIN] window.open and php...

2002-05-02 Thread Mike Flynn
Ummm are we talking JavaScript or PHP here? Opening windows is a function of JavaScript, being that is occurs on the client side and not the server side. If you call ope('stuff.php', 100, 200) somewhere in your page, then your function will work fine. There are a number of ways to have PHP

[PHP-WIN] window.open and php...

2002-05-02 Thread Sandeep Murphy
hi, I hv a problem related to the window popup and my php script.. I need to send values for the widht and height dynamically thru my php like the fwg: function ope(page,wid,hgt){ //open (page, "page", "height="+hgt,"width="+wid,"channelmode=0,dependent=0,directories=0