Hi all,
i want to get count of full view my video clip, but i'm newbie. How do i implement it? Thank you.
i want to get count of full view my video clip, but i'm newbie. How do i implement it? Thank you.
flowplayer("player", "flowplayer/flowplayer-3.1.5.swf", {
clip: {
autoPlay: false,
onStart: function(clip){
$.get("http://localhost/video/statistics.php");
}
},
});
where statistics.php:
$a=1;
$fp = fopen('data.txt', 'a+');
fwrite($fp, $a);
fclose($fp);
but after start the clip, data.txt is empty.