Hello and thank you for your replies.
I am now using a Java script to detect the width of the document. That is a good thing, but now my problem is how to get that value assigned to a variable in PHP.
here's the java script :
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function showres() {
var myscreen = document.body.clientWidth;
document.write(myscreen);
}
// End -->
</script>
that is in the head, this is in the body :
<script language="javascript">showres();</script>
So, it prints out the width inside the browser window, but I need to assign that value to a PHP variable, and I haven't figured that out yet.
Again thank you for your responses.
Ryan