Hi
do not know how to insert a script counter view, I would like to be displayed on any video views counter. Of course, different for each video. I'd pay-per-view video as a script at videobb flash and other scripts.
Thanks to all
XFileSharing Pro - View Counter
-
- Posts: 2
- Joined: Apr 15, 2011 11:52 am
Re: View Counter
mb download by http://innovativetechnologyconcepts.com or try this script:200299 wrote:Hi
do not know how to insert a view, I would like to be displayed on any video views counter. Of course, different for each video. I'd pay-per-view video as a script at videobb flash and other scripts.
Thanks to all
PHP Code:
Code: Select all
<?php
$file = "uvcounter.txt";
unset($h);
$f = fopen($file, "r+");
$h = fread($f, filesize($file));
fclose($f);
if (!$mevisit) {
$h++;
$f = fopen($file, "w+");
fwrite($f, $h);
fclose($f);
@setcookie("mevisit","yes",time()+31536000);
}
$file = "vcounter.txt";
unset($h);
$f = fopen($file, "r+");
$h = fread($f, filesize($file));
fclose($f);
$h++;
$f = fopen($file, "w+");
fwrite($f, $h);
fclose($f);
?>