Hello,
I am French, excuse me for the faults
on my site, I open a file php with this code :
<?php
$fp = fopen("http://mysite.fr/compteur.txt","r+");
$nbvisites = fgets($fp,10);
if ($nbvisites=="") $nbvisites = 0;
$nbvisites++;
fseek($fp,0);
fputs($fp,$nbvisites);
fclose($fp);
header("Content-Type: audio/mpeg-url");
readfile("http://mysite.fr/playlist.m3u);
?>
The objective is to count the number of choices where the playlist is charged.
With mozilla firefox, no playlist functions and with internet explorer, only some playlist.
And if I' open the file php with the software vlc, all functions correctly...
thank's!