client/player/js/cinelabModelV1.php
author ymh <ymh.work@gmail.com>
Tue, 15 Jun 2010 01:32:34 +0200
changeset 47 8dbd741e3da6
parent 1 436d4791d7ac
permissions -rw-r--r--
correct css path and error handling + increase version

<?PHP

header("Content-Type: application/json;");

$filename ="cinelabModelV1.js";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
echo($contents);
fclose($handle);


?>