<?php
//counter of alquranbd.com
$filecount
=
"counter.dat"
;
if
(!
file_exists
(
$filecount
)){
echo
"The counter database $filecount couldn't be found."
;
exit
;}
$fp
=
fopen
(
"$filecount"
,
"rb"
);
while
(!
feof
(
$fp
))
{
$total
=
fread
(
$fp
,1024);
}
fclose(
$fp
);
if
(
$total
==
''
){
$total
=
"1"
;}
else
{
$total
+= 1;}
$fp2
=
fopen
(
"$filecount"
,
"w"
);
fwrite(
$fp2
,
$total
);
fclose(
$fp2
);
echo
' '
.
$total
;
?>
No comments:
Post a Comment