Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Does anyone know how to do this? Help!

  1. #1
    Join Date
    Feb 2007
    Posts
    25
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Does anyone know how to do this? Help!

    Recently i've uploaded a site(tintasii.moldovacrestina.net) and i would like to know how many people visted my website. but also to make it visible for all

    Thanks for your help!

  2. #2
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default

    Most of the host providers provides a way using which their clients can view their website statistics as a part of their site's control panel.

    If it is not there in your case you can go for a very good software - AWStats.

    You can also checkout this page

  3. #3
    Join Date
    Feb 2007
    Posts
    25
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default thanks

    thanks for your help,

    You know, i want to make a meter i mean right on that page, so that evryone would be able to see it?

    Is it the same what you gave to me?

    Thanks gain!

  4. #4
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default

    Quote Originally Posted by Slava
    You know, i want to make a meter i mean right on that page, so that evryone would be able to see it?
    I didn't get your this point.

    AWStats is a a tool which an admin can use to check the detailed statistics. I is not a tool meant for a normal user.

    If you are looking for something using which you can display the number of visitors visited your site then please let me know about it, so that I can try to give you the same.

    If I am wrong then try to explain what exactly you are looking for, if possible some example site/page.

  5. #5
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Please be sure to post in the correct forum category in the future. This question isn't related to CSS in anyway. The most appropriate category would either by "Other" or "Looking for such a script". Thread moved to the former this time.

  6. #6
    Join Date
    Feb 2007
    Posts
    25
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Yes, your right, i want to display the num of the vistors and if it's posible date and time, like:
    views: 453
    today: 34

    Hope you understand what i want!
    thanks!

  7. #7
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default

    check this one and this one

  8. #8
    Join Date
    Feb 2007
    Posts
    25
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default thanks

    man, you helped me so much!

  9. #9
    Join Date
    Jun 2006
    Location
    Acton Ontario Canada.
    Posts
    677
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default

    PHP solution...

    <?php
    $numfile = "count.txt";
    $handle = fopen($numfile,"a+");
    $var = fread($handle, "50")++;
    fwrite($handle, $var);
    fclose($handle);
    echo "Total Visitors:". $var;
    ?>
    - Ryan "Boxxertrumps" Trumpa
    Come back once it validates: HTML, CSS, JS.

  10. #10
    Join Date
    Feb 2007
    Posts
    25
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Sorry but i'm not familiar with PHP, and have no idea where to put this code in my html code,

    I'd be very thankful if you explained me how to do this!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •