Search results

  1. Profile

    Username changes are shown twice.
  2. Requests

    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.
  3. PHP tag

    Please make the background of it white... it's hard to read ie) <?php echo "Hello"; ?>
  4. [PHP] QnA

    Well title says it all, if you need help with anything in PHP post it here, I'll do my best to help you.
  5. [PHP] Basic IP log

    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); ?>
Back
Top