The first thing to note is that php is a server-side language and cannot obtain the width and height of the client screen. However, the work und is to use the client scripting language javascript to obtain the width and height of the client's computer screen, and then pass it to the php scripting language in the form of ajax or cookie, in this way, php can obtain the screen width and height of the client computer.
You can use javascript to obtain the width, height, and resolution of the client computer as follows:
Screen resolution height: window. screen. height
Screen resolution width: window. screen. width
Available screen workspace height: window. screen. availHeight
Available workspace width: window. screen. availWidth
The method passed to the php server is as follows:
The code is as follows: |
Copy code |
$. Post ('http: // www.phpernote.com/php-template-framework/189.html', expires w:width,h:height}); // the returned value is ignored here
|
The complete code for obtaining the width, height, and resolution of the display screen on the client computer using php is as follows:
The code is as follows: |
Copy code |
<Html xmlns = "http://www.phpernote.com/javascript-function/34.html"> <Head> <Meta http-equiv = "Content-Type" content = "text/html; charset = utf-8"/> <Title> Untitled Document </title> <Script type = "text/javascript" src = "http://www.phpernote.com/js/jquery.min.js"> </script> <Script type = "text/javascript"> $ (Function (){ Var width = window. screen. height; Var height = window. screen. width; $. Post ('http: // www.phpernote.com/php-template-framework/189.html', {w:width,h:height}); // input relevant parameters to your statistics file. }); </Script> </Head> <Body> Here is the body ...... </Body> </Html> |