bradgrafelman wrote:...
$fp = fopen('filename.wmv', 'r');
if($fp) {
while(!feof($fp)) {
echo fgets($fp, 4096);
}
}
fclose($fp);
Thank you very much for your input, bradgrafelman.
In the first line
$fp = fopen('filename.wmv', 'r');
, if there are more than one filename to be listed (ie a.wmv, b.wmv etc), how do I list them?