Hello, I want to know if its possible to detect the following things:
1 cookies enabled/disabled
2 javascript enabled/disabled - version
3 screen resolution/color dept
What I want to do is run a small javacode on my site and pass wether it is true or false, etc.
Then log it using php into a database.
<script language="javascript">
<!--
$cookies = "disabled";
if (cookies = 1) {
$cookies = "enabled";
}
//-->
</script>
<?
echo "you have cookies " . $cookies;
?>
Can someone help me with the javascript coding? ..and/or if this possible?
Thanks!