Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
php hilfe
#1
ich hab nen skript das anzeigt wer auf meiner seite war. nun weiß ich aber nicht wie ich es ändern muss um die ips.log datei an einen anderen ort zu kriegen. jetzt wird die datei ja gerade dort erstellt wo die .php datei ist. ich möchte es aber auf einer anderen seite oder,wenn möglich auf meinem pc.
hier der inhalt das skripts:
PHP Code:
<?php

$ip
=$_SERVER['REMOTE_ADDR'];

$port=$_SERVER['REMOTE_PORT']; 

$browser=$_SERVER['HTTP_USER_AGENT']; 

$ausgabe="IP:$ip\nPORT:$port\nBROWSER:$browser"

$filename="ips.log"

$datum=date("d.m.Y, H:i"); 

$fp=fopen($filename"a+"); 

fwrite($fp"Am ".$datum." wurde die seite besucht von:\n".$ausgabe."\n\n"); 

fclose($fp); 

?>

mfg
Narutofan

Edit: wüsste jemand wie man das ziel "verstellt"? also das es wenn man auf die datei klickt nicht die besucherzahl der seite aufzeichnet sondern einer beliebigen adresse? schätze mal das das nicht geht^^


Messages In This Thread
php hilfe - by Narutofan XXl - 26.08.2008, 15:13
RE: php hilfe - by agent47 - 26.08.2008, 17:41
RE: php hilfe - by Narutofan XXl - 26.08.2008, 18:07
RE: php hilfe - by BritneyBitch - 26.08.2008, 18:17
RE: php hilfe - by Narutofan XXl - 26.08.2008, 18:27
RE: php hilfe - by BritneyBitch - 26.08.2008, 18:29
RE: php hilfe - by agent47 - 26.08.2008, 19:12
RE: php hilfe - by Narutofan XXl - 26.08.2008, 19:20
RE: php hilfe - by agent47 - 26.08.2008, 19:46
RE: php hilfe - by Narutofan XXl - 27.08.2008, 16:20
RE: php hilfe - by agent47 - 27.08.2008, 17:33
RE: php hilfe - by Narutofan XXl - 27.08.2008, 17:54
RE: php hilfe - by agent47 - 27.08.2008, 18:45
RE: php hilfe - by Narutofan XXl - 27.08.2008, 18:59
RE: php hilfe - by agent47 - 27.08.2008, 19:14
RE: php hilfe - by Narutofan XXl - 27.08.2008, 19:22
RE: php hilfe - by agent47 - 27.08.2008, 19:49
RE: php hilfe - by Narutofan XXl - 28.08.2008, 13:51
RE: php hilfe - by agent47 - 28.08.2008, 14:19
RE: php hilfe - by prestige - 02.09.2008, 17:19
RE: php hilfe - by agrafix - 03.09.2008, 09:46
RE: php hilfe - by Narutofan XXl - 02.09.2008, 17:21
RE: php hilfe - by prestige - 02.09.2008, 17:42
RE: php hilfe - by Narutofan XXl - 02.09.2008, 17:59
RE: php hilfe - by prestige - 03.09.2008, 13:29
RE: php hilfe - by agrafix - 03.09.2008, 13:49
RE: php hilfe - by prestige - 03.09.2008, 18:48
RE: php hilfe - by agrafix - 03.09.2008, 21:02
RE: php hilfe - by Narutofan XXl - 05.09.2008, 17:15



Users browsing this thread: 1 Guest(s)