| View previous topic :: View next topic |
| Author |
Message |
200299
Joined: 17 Feb 2011 Posts: 27
|
Posted: Apr 14, 2011 9:04 pm Post subject: View Counter |
|
|
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 |
|
| Back to top |
|
 |
ufkabakan
Joined: 13 Apr 2011 Posts: 129
|
Posted: Apr 16, 2011 7:35 am Post subject: |
|
|
| Maybe u can see with Admin account, in files section. "DL" row say ur download count. Maybe its same for video plays. |
|
| Back to top |
|
 |
hellojohnatan
Joined: 15 Apr 2011 Posts: 2
|
Posted: May 10, 2011 10:13 am Post subject: Re: View Counter |
|
|
| 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 |
mb download by http://innovativetechnologyconcepts.com or try this script:
PHP Code:
| Code: | <?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);
?> |
|
|
| Back to top |
|
 |
nyan
Joined: 28 Oct 2010 Posts: 121
|
Posted: May 10, 2011 11:47 am Post subject: |
|
|
| Hello we are in a perl forum here. |
|
| Back to top |
|
 |
|