how to get screen resolution show screen size script with php javascript sample demo
RegisterLogin
Webune Forums » PHP » how to get screen resolution show screen size script with php javascript sample demo
how to get screen resolution show screen size script with php javascript sample demo
Post Description: how to get screen resolution show screen size script with php javascript sample demo
Tags: how, to, get, screen, resolution, show, screen, size, script, with, php, javascript, sample, demo
This Post Was Posted On Feb 29, 2008 By web hosting #1240
Post Description: how to get screen resolution show screen size script with php javascript sample demo
Tags: how, to, get, screen, resolution, show, screen, size, script, with, php, javascript, sample, demo
This Post Was Posted On Feb 29, 2008 By web hosting #1240
how to get screen resolution show screen size script with php javascript sample demo by web hosting
well, with php, you can get and show the screen resolution by using javascript.
the javascript code:
lt;script language="javascript">
<!--
writeCookie();
function writeCookie()
{
var today = new Date();
var the_date = new Date("December 31, 2023");
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 = 'test.php';
}
//-->
</script>
<!--
writeCookie();
function writeCookie()
{
var today = new Date();
var the_date = new Date("December 31, 2023");
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 = 'test.php';
}
//-->
</script>
the code:
<?php
if(isset($HTTP_COOKIE_VARS["users_resolution"]))
$screen_res = $HTTP_COOKIE_VARS["users_resolution"];
if(isset($HTTP_COOKIE_VARS["users_resolution"]))
$screen_res = $HTTP_COOKIE_VARS["users_resolution"];
if you want to put it all together, i have created a complete hmtl demo. all you have to do is copy and paste code below into notepade, then save it as wallpaperama.php and upload to your php website, then open it with your browser and it will show you what YOUR screen resolution is.
The Complete Page
<HTML>
<TITLE>Show Screen Resolution</TITLE>
<HEAD>
<?php
if(isset($HTTP_COOKIE_VARS["users_resolution"]))
$screen_res = $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, 2023");
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 = 'wallpaperama.php';
}
//-->
</script>
<?
}
?>
</HEAD>
<BODY>
<h1>Screen Resolution by Wallpaperama.com </h1><hr>
<p>This script will show you what your screen resolution is set to using php and javascript.</p>
<p style="color:#FF0000"><?php
echo "Your Screen resolution is set at ". $screen_res;
?>
</p>
<p>If you found this script helpful, we would appreciate a link to wallpaperama.com ? Why link to us. by linking to wallpaperama.com you will help others find this free script and others in our library. </p>
<p>Thanks</p>
<p>Wallpaperama Team</p>
<p align="center">PHP Hosting Provided By <a href="http://www.webune.com">Webune.com</a> </p>
</BODY>
</HTML>
<TITLE>Show Screen Resolution</TITLE>
<HEAD>
<?php
if(isset($HTTP_COOKIE_VARS["users_resolution"]))
$screen_res = $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, 2023");
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 = 'wallpaperama.php';
}
//-->
</script>
<?
}
?>
</HEAD>
<BODY>
<h1>Screen Resolution by Wallpaperama.com </h1><hr>
<p>This script will show you what your screen resolution is set to using php and javascript.</p>
<p style="color:#FF0000"><?php
echo "Your Screen resolution is set at ". $screen_res;
?>
</p>
<p>If you found this script helpful, we would appreciate a link to wallpaperama.com ? Why link to us. by linking to wallpaperama.com you will help others find this free script and others in our library. </p>
<p>Thanks</p>
<p>Wallpaperama Team</p>
<p align="center">PHP Hosting Provided By <a href="http://www.webune.com">Webune.com</a> </p>
</BODY>
</HTML>
Leave Your Comments
Related Pages: [Add Your Website]
Post New Topic
guides
#1679 1
thanks, this is a good how to find screen resolution using php tutorial guide.
May 21, 2007 Reply Report abuse
©2011 Webune Forums - Wed Dec 21, 2011 3:29 am
Powered by: Webune Forums V3
Powered by: Webune Forums V3