I have one php file, inside of it will use a very simple javascript to get screen resoluton
<SCRIPT LANGUAGE="javascript">
var width = screen.width
var height = screen.height
document.write("<B>You're set to "+width+ "x" +height+"</B>")
</SCRIPT>
In the following I also have a form:
<form .....>
<input type="text" size="4" name="width" value="<?=$width?>">
</form>
I want to pass javascript value "width" to php form. Would you tell me how to perform this function?
Thank you!