вот код счётчика
Цитата |
<?php $dirct="foldcount"; $cnt=substr(basename($_SERVER['PHP_SELF']), 0, -4). "_cnt"; if (file_exists("$dirct/$cnt")==True) { $hdl = fopen("$dirct/$cnt", "r+"); flock($hdl, LOCK_EX); $sr = fread($hdl, filesize("$dirct/$cnt")); $sr++; rewind ($hdl); ftruncate ($hdl, 0); fwrite($hdl, $sr); fflush($hdl); flock($hdl, LOCK_UN); fclose($hdl); } else { {$sr=1; $hdl = fopen("$dirct/$cnt", "w+"); flock($hdl, LOCK_EX); fwrite($hdl, $sr); fflush($hdl); flock($hdl, LOCK_UN); fclose($hdl); } echo ("посетителей - ".$sr); ?> |
Цитата |
<?php include "schetchik.php"; ?> |
error_reporting(E_ALL);