Ok, thanks.
I'm finished. I'm use xajax. It's work.
I'm finished. I'm use xajax. It's work.
| Registered | Nov 13, 2009 |
| Last login | Nov 13, 2009 |
| Forum posts | 3 |
| Direct URL | http://www.flowplayer.org/forum/users/18683 |
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.