Select Language
|
include("./home/include/image_rotate_left.php");?> | All India Coordinated Research Project on Goat Improvement |
include("./home/include/image_rotate.php");?> |
/*$sql=mysql_query("select * from visiter_detail"); while($result=mysql_fetch_array($sql)){ $total=$total + $result['number_visit']; }*/ session_start(); $counter_name = "counter.txt"; // Check if a text file exists. If not create one and initialize it to zero. if (!file_exists($counter_name)) { $f = fopen($counter_name, "w"); fwrite($f,"0"); fclose($f); } // Read the current value of our counter file $f = fopen($counter_name,"r"); $counterVal = fread($f, filesize($counter_name)); fclose($f); // Has visitor been counted in this session? // If not, increase counter value by one if(!isset($_SESSION['hasVisited'])){ $_SESSION['hasVisited']="yes"; $counterVal++; $f = fopen($counter_name, "w"); fwrite($f, $counterVal); fclose($f); } ?>
All India Coordinated Research Project on Goat Improvement Copyright © 2017 PC Unit, ICAR - CIRG, All rights reserved |
Visitor number: echo $counterVal; //$total;?> Developed by Krishi //echo $total;?> | Last Modified: 07 Nov 2024 |