- الرئيسية
- ما الجديد !
-
الصفحات▼
الصفحات
اضافة عداد زوار لرئيسية الموقع
الساعة الآن 06:17 AM
<?php
$path = 'counter.txt';
$file = fopen( $path, 'r' );
$count = fgets( $file, 1000 );
fclose( $file );
$count = abs( intval( $count ) ) + 1;
$file = fopen( $path, 'w' );
fwrite( $file, $count );
fclose( $file );
echo $count;
?>
<script type="text/javascript" src="counter.php"></script>
<?php
$path = 'counter.txt';
$file = fopen( $path, 'r' );
$count = fgets( $file, 1000 );
fclose( $file );
$count = abs( intval( $count ) ) + 1;
$file = fopen( $path, 'w' );
fwrite( $file, $count );
fclose( $file );
$reout = "document.write('$count');";
echo $reout;
?>