count.inc
<?php$counter_file = 'count.inc';clearstatcache();ignore_user_abort(true); if (file_exists($counter_file)) { $fh = fopen($counter_file, 'r+'); while(1) { if (flock($fh, LOCK_EX)) { $counter = chop(fgets($fh, 1)); $counter = chop(fread($fh, filesize($counter_file))); fflush($fh); ftruncate($fh, ftell($fh)); rewind($fh); fwrite($fh, $counter+1); flock($fh, LOCK_UN); break; } }}fclose($fh);?>
For Exmple:this is the $counter man who watch this page
$counter
זהו..זה הוכן ע"י ... תהנו ! ובבקשה תעזרו להחזיר את הפורום למה שהיה ........יום טוב ערב טוב ולילה טוב !
פה תשים את הקוד
תמחק את "פה תשים את הקוד" ותשים את הקוד וככה יהיה לך ריבוע של קוד כמו שכולם עושים.
<?php$cfile = "count.inc";if (!file_exists($cfile)) { $cf = fopen($cfile, 'w'); fwrite($cf, "0"); fclose($cf);}$cf = fopen($cfile, 'r');$counter = fread($cf, 1024) + 1;$cf = fopen($cfile, 'w');fwrite($cf, $counter);fclose($cf);print "this is the $counter man who watch this page";?>
print "this is the $counter man who watch this page";?>