RE: [PHP] window size...

2003-04-04 Thread Matt Giddings
DT, PHP is a server side scripting language, it does not have the ability to manipulate client side objects. You're pretty much stuck with javascript or vbscript and possible a few others. Matt > -Original Message- > From: Deependra b. Tandukar [mailto:[EMAIL PROTECTED] > Sent: Friday

Re: [PHP] window size...

2003-04-04 Thread Marek Kilimajer
What window? Do you mean the one in the server room? ;-) Simply echo javascript code that will do it. Remember: php runs on the server, if you want to do something within the browser without interacting with the server, use javascript. Deependra b. Tandukar wrote: Hi, Is there anyway to define

RE: [PHP] window size...

2003-04-04 Thread Niklas Lampén
No. Niklas -Original Message- From: Deependra b. Tandukar [mailto:[EMAIL PROTECTED] Sent: 4. huhtikuuta 2003 12:45 To: Justin French; Diana Castillo; [EMAIL PROTECTED] Subject: [PHP] window size... Hi, Is there anyway to define a fixed window size using PHP as we do with JavaScript

Re: [PHP] window size and setting other properties

2002-12-11 Thread Chris Hewitt
Larry Brown wrote: Does PHP have any commands to set the size of the window to be loaded? For that matter are there any methods for hiding buttons etc. from PHP? Being server-side it can only output html. You can open a new window but not set its parameters. To do that you need JavaScript, wh

Re: [PHP] window size and setting other properties

2002-12-11 Thread Jason Wong
On Thursday 12 December 2002 04:09, Larry Brown wrote: > Does PHP have any commands to set the size of the window to be loaded? For > that matter are there any methods for hiding buttons etc. from PHP? All php does is output text, which is usually in the form of HTML. So do whatever you need to