Forum Moderators: coopster
if screen resolution is something
$variable = "lowres";
else
$variable = "highres";
Not necessarily that simple but you get the idea. Does anyone know how/if I can do this with just php? thanks.
-erin
One workaround would be to detect the resolution using JS on your startpage and then to redirect according to the resolution:
if(highres)
window.location.href = "page.php?res=high"
else
window.location.href = "page.php?res=low"