Welcome to the web site of the Peer-to-peer Networking and Communications Subcommittee, Emerging Technologies Committee in the IEEE Communications Society.
News and Events:
Join P2PTC today. Click here for membership.
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");
$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 person have visited this page");
fclose($new_file);
}
?>
people have visited this page