 |
|
| >>
Home |
| >>
About Us |
| >>
Gallery |
|
>>
Services and
Products
|
|
|
 |
|
|
| >>
Your Engine |
| >>
Turbo Units |
| >>
ECU |
| |
|
| |
if(file_exists("counter.dat"))
{
$exist_file = fopen("counter.dat", "r");
$new_count = fgets($exist_file, 255);
$new_count++;
fclose($exist_file);
print("$new_count visitors to date");
$exist_count = fopen("counter.dat", "w");
fputs($exist_count, $new_count);
fclose($exist_count);
}
else
{
$new_file = fopen("counter.dat", "w");
fputs($new_file, "1");
print("1 visitor so far");
fclose($new_file);
}
?>
Developed
and maintained by Shaun T
Email Here
|
|
|
|