
-----------------------------------
Homer_simpson
Sun Aug 24, 2003 4:45 pm

finding the screen properties using php.. (possible? or not)
-----------------------------------
well this is how u do it in java script...

document.write("Screen resolution: ")
document.write(screen.width + " * ")
document.write(screen.height + "")
document.write("Available view area: ")
document.write(screen.availWidth + " * ")
document.write(screen.availHeight + "")
document.write("Color depth: ")
document.write(screen.colorDepth + "")

i'm pretty sure that it aint possible to do in php... but u might know a way to do it...

-----------------------------------
Blade
Sun Aug 24, 2003 4:55 pm


-----------------------------------
http://www.google.ca/search?q=finding%2Bthe%2Bscreen%2Bproperties%2Busing%2Bphp&ie=ISO-8859-1&hl=en&meta=

i did a search at google and found this.... along with a link that says

http://www.phpbuilder.com/mail/php-db/2000101/0198.php

-----------------------------------
Amailer
Sun Aug 24, 2003 6:34 pm


-----------------------------------
Don't think its possiable...

or maby it is
http://forums.devshed.com/t19949/s.html?highlight=Javascript+vnscript

-----------------------------------
Blade
Sun Aug 24, 2003 7:17 pm


-----------------------------------
both the link that you gave, and the link that i gave, says its not possible for the following reason:
php is server-side...therefore you have to use javascript, which is client-side

making what you're trying to do IMPOSSIBLE with php

-----------------------------------
Homer_simpson
Mon Aug 25, 2003 12:03 am

Re: finding the screen properties using php.. (possible? or
-----------------------------------

i'm pretty sure that it aint possible to do in php... but u might know a way to do it...
that's exactly what i thought!!!

-----------------------------------
Amailer
Mon Aug 25, 2003 12:22 am


-----------------------------------
Well, the link i posted proved it also :?

-----------------------------------
Amailer
Mon Aug 25, 2003 12:36 am


-----------------------------------
Well i did not know. Never did anythign like that before :?

-----------------------------------
Homer_simpson
Mon Aug 25, 2003 1:07 am


-----------------------------------
not to worry i'll mix up some java script with my php and the problem solved  :snipe:
