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 
provide the values of height and width to the JavaScript, either having PHP 
hardcode it into your window open function if all calls to it are going to 
have the same width and height on a page, or having PHP hardcode it into 
the function CALLS, so each call to ope() uses a specific height and width 
provided by PHP.  It would take a while to explain this fully.  But if you 
understand the difference between PHP (server-side) and JavaScript 
(client-side), then it should be pretty clear after some tries.

Good luck,

-Mike

At 04:21 PM 5/2/2002 +0100, Sandeep Murphy wrote:
>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,fullscre
>en=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0",
>"myWindow")
>
>                 open (page, "page",
>"height=30,width=50,channelmode=0,dependent=0,directories=0,fullscreen=0,loc
>ation=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0", "myWindow")
>         }
>
>         </script>
>
>The window does pop ups but ignores the widht and height sent.. whereas if i
>hardcode the values for the pop up is works...
>
>Isnt is possible to send values for the window parameters dynamically?? if
>so what am i doing wrong??
>
>TIa,
>
>sands
>
>--
>PHP Windows Mailing List (http://www.php.net/)
>To unsubscribe, visit: http://www.php.net/unsub.php


Mike Flynn - Burlington, VT
http://www.mikeflynn.net/ - [EMAIL PROTECTED]
home=>work=>home=>store=>home [repeat daily]


-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to