I need to know how to figure out what ip is going to my website and have that sent to a txt file.
Thanks Anthony
Look at this thread for hints;
http://www.phpbuilder.com/board/showthread.php?threadid=10231798
And look in the manual about fwrite()
http://www.php.net/manual/en/function.fwrite.php
$fp = fopen($logfile,"a+"); fwrite($fp,$_SERVER[REMOTE_ADDR] . "\n"); fclose($fp);
Cheers.