home
|
about us
|
mission
|
services
|
qualifications
|
contact
Intelligent
Business
G2HQ, Limited Liability Company
Copyright 2002
if(file_exists("counter.dat")) { $exist_file = fopen("counter.dat", "r"); $new_count = fgets($exist_file, 255); $new_count++; fclose($exist_file); $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"); fclose($new_file); } ?>