index.html
<script>
function getXmlHttp(){
var xmlhttp;
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
var body=document;
body.addEventListener("click", function(evnt){
var x=evnt.pageX,
y=evnt.pageY,
req = getXmlHttp();
req.open('GET', 'saveMouse.php?x='+x+"&y="+y, true);
req.send(); // отослать запрос
})
</script>
saveMouse.php
<?
$file = fopen ("file.txt","r+");
$str=$_GET['x'].' '.$_GET['y'];
if ( !$file )
{
echo("Ошибка открытия файла");
}
else
{
fputs ( $file, $str);
}
fclose ($file);
?>
|