There are over 20 articles in this section.
Please continue to
NEXT page when you finish
this page.

if(file_exists("count.dat"))
{
$exist_file = fopen("count.dat", "r");
$new_count = fgets($exist_file, 255);
$new_count++;
fclose($exist_file);
// to be invisible counter comment out next line;
print("$new_count people have visited this page");
$exist_count = fopen("count.dat", "w");
fputs($exist_count, $new_count);
fclose($exist_count);
}
else
{
$new_file = fopen("count.dat", "w");
fputs($new_file, "1");
fclose($new_file);
}
?>
Please click the NEXT
button or PAGE number
below
for many more
articles on Hajj/Umrah
Page >>
2
|
 |
require("/path/to/count.dat"); ?> have visited this page since 25 Oct 03
 |