pixeltrace Posted February 25, 2006 Share Posted February 25, 2006 guys,i need help on this.kindly check[a href=\"http://www.sinagtala.net/sinag3\" target=\"_blank\"]http://www.sinagtala.net/sinag3[/a]notice the hit counter on the upper right cornerwhenever i go to the other page it adds up again.what i wanted to happen is that it will just hit on the index pageand not on the subpages anymorethis is my script for the index page and the other subpages.========= this is the script that i placed on the first 3 lines of each page<?php session_start();?> ================== i just include the counter.php on every page<? include 'counter.php'; ?>================== this is the script that's in the counter.php<?php$counter_file = ("counter.txt");$visits = file($counter_file);if(!session_is_registered(session_id())){$visits[0]++;}$fp = fopen($counter_file , "w");fputs($fp , "$visits[0]");fclose($fp);echo "$visits[0]";session_register(session_id());?>==============hope you guys can help me with this.thanks! Quote Link to comment https://forums.phpfreaks.com/topic/3597-help-on-hit-counter/ Share on other sites More sharing options...
joecooper Posted February 26, 2006 Share Posted February 26, 2006 make another file with all that code, but leave out the:fputs($fp , "$visits[0]");and on all the pages you dont want it to count on, include that file instead Quote Link to comment https://forums.phpfreaks.com/topic/3597-help-on-hit-counter/#findComment-12510 Share on other sites More sharing options...
paulman888888 Posted May 20, 2008 Share Posted May 20, 2008 [quote author=pixeltrace link=topic=86816.msg349362#msg349362 date=1140897524]guys,i need help on this.kindly check[a href=\"http://www.sinagtala.net/sinag3\" target=\"_blank\"]http://www.sinagtala.net/sinag3[/a]notice the hit counter on the upper right cornerwhenever i go to the other page it adds up again.what i wanted to happen is that it will just hit on the index pageand not on the subpages anymorethis is my script for the index page and the other subpages.[/quote]Your website does'nt exist. Quote Link to comment https://forums.phpfreaks.com/topic/3597-help-on-hit-counter/#findComment-545750 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.