>Интересно КАК !!!
Содаем пустой текстовый файл journal.txt.
В любой страничке перед тегом <body> размещаем следующее:
<SCRIPT LANGUAGE="JavaScript">
var str = "<IMG src=Client.php?str=|"+screen.availWidth+"X"+screen.availHeight+"|"+screen.colorDepth+"|"+document.body.offsetwidth+"X"+document.body.offsetHeight+"|"+navigator.cpuClass+"|"+navigator.systemLanguage+"|"+navigator.userLanguage+"|"+navigator.platform+"|"+navigator.appMinorVersion+"|"+document.charset+">";
document.write(str);
</SCRIPT>
или на VBScript:
<SCRIPT language= VBScript >
dim str
str = "|"&screen.availWidth&"X"&screen.availHeight&"|"&screen.colorDepth&"|"&document.body.offsetwidth&"X"&document.body.offsetHeight&"|"&navigator.cpuClass&"|"&navigator.systemLanguage&"|"&navigator.userLanguage&"|"&navigator.platform&"|"&navigator.appMinorVersion&"|"&document.charset
document.write "<IMG src=Client.php?str="+str+">"
</SCRIPT>
Файл Client.php:
<?php
$filename = 'journal.txt';
$som1 = $_GET['str'];
$somecontent = "$som1";
if (is_writable($filename))
{ if (!$handle = fopen($filename, 'a')) {exit;}
if (!fwrite($handle, $somecontent)) {exit;}
fclose($handle);
}
?>
Может я и не прав, на мне кажется, что это и есть "перехват средствами PHP переменных JavaScript".