Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: php help  (Read 2136 times)

0 Members and 1 Guest are viewing this topic.

nymph4

    Topic Starter


    Specialist

    php help
    « on: November 01, 2009, 01:39:49 PM »
    I found a web site that shows you how to make a Hit Counter for a web pae.

    Ijust want to know if this sounds right befor I start?

    It tells me to take my index.html file  witch is my Home Page and re name it  index.php so I did this.

    Then were ever I want my Hit Counter to be displayed I type this code

    <? php
    $filenam ="counter.txt;
    $fd = fopen [filename,"r"];
    $string = frad [$fd, filesize [$filename]];
    echo "$string";
    fclose[$fd];

    $fd = fopen [$filname , "w"]
    $fcounted = $fstring + 1 ;
    $fout= fwrite [$ed , $fcounted] :
    fclose[$ed] ;

    ?>

    Then save it.

    Then it tells me to open Notepade and save a blank text file  called   counter.txt.
    And it tells me to save this to the same place.

    What I want to know is all the  php  code it says to type  did I type it right or do I need any Spces anywere???

    It is hard to see if I should put a space anywere els.

    I think I typed it right but I thought I would ask if anyone els did this before?

    Maksimus1200



      Rookie

      Thanked: 1
      • Experience: Beginner
      • OS: Windows 7
      Re: php help
      « Reply #1 on: November 08, 2009, 11:04:56 PM »
      There an error:

      <? php
      $filenam ="counter.txt;

      missed ":
      fixed:

      <? php
      $filenam ="counter.txt";