[PHP] Getting screen resolution and color depth

2001-09-16 Thread Salty Marine
Greetings to You: How do I get the user's screen resolution and color depth? Here's how it is done in Javascript. I want to do it and put the results into a PHP varibal. document.write(screen.width + " x " + screen.height) document.write(screen.colorDepth + " bit") Regards, Salty

RE: [PHP] Getting screen resolution and color depth

2001-09-16 Thread Matthew Loff
EMAIL PROTECTED] Subject: [PHP] Getting screen resolution and color depth Greetings to You: How do I get the user's screen resolution and color depth? Here's how it is done in Javascript. I want to do it and put the results into a PHP varibal. document.write(screen.width + "

RE: [PHP] Getting screen resolution and color depth

2001-09-16 Thread Seb Frost
But you could then re-submit the page with this data somehow, couldn't you? - seb -Original Message- From: Matthew Loff [mailto:[EMAIL PROTECTED]] Sent: 16 September 2001 21:04 To: 'Salty Marine'; [EMAIL PROTECTED] Subject: RE: [PHP] Getting screen resolution and color de

RE: [PHP] Getting screen resolution and color depth

2001-09-16 Thread Matthew Loff
screen.width + "x" + screen.height + '&color_depth=' + screen.colorDepth" -Original Message- From: Seb Frost [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 16, 2001 4:13 PM To: Matthew Loff; 'Salty Marine'; [EMAIL PROTECTED] Subject: RE: [PHP] Ge