In the following php code to embed wmv file in a webpage, is it possible to list more than one wmv file (so that I do not have to create one php file for each very one wmv file)? Would appreciate if someone could help. Thank you.
<?php
$file = $_REQUEST["file"];
if ($file == "something") {
$open = 'trial.wmv';
}
else {
$open = ' ';
}
Header("Content-type: video/x-ms-wmv");
echo $open;
?>

