Jump to content

resolution


otuatail

Recommended Posts

<?

if(isset($HTTP_COOKIE_VARS["users_resolution"]))

  $screen_resolution = $HTTP_COOKIE_VARS["users_resolution"];

else //means cookie is not found set it using Javascript

{

?>

<script language="javascript">

<!--

writeCookie();

 

function writeCookie()

{

var today = new Date();

var the_date = new Date("December 31, 2010");

var the_cookie_date = the_date.toGMTString();

var the_cookie = "users_resolution="+ screen.width +"x"+ screen.height;

var the_cookie = the_cookie + ";expires=" + the_cookie_date;

document.cookie=the_cookie

 

location = 'show-user-screen-resolution-php.php.php';

}

//-->

</script>

<?

}

?>

Link to comment
https://forums.phpfreaks.com/topic/42230-resolution/#findComment-204859
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.