I'll take requests to code things for people in PHP. Anything basic to advanced... Just not going to do a CMS or anything like that.
Template:
Project Name:
Functions:
Purpose of this:
DO NOT PM ME ABOUT THIS.
This will log each ip into a text file, does not check for duplicates.
<?php
$ip = $_SERVER['REMOTE_ADDR'];
$d = date("d-m-y / H:i:s");
$log = $d . " -- " . $ip ."<br />";
$fopen = fopen("logs.html", "a");
fwrite($fopen, $log);
fclose($fopen);
?>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.