client/player/js/cinelabModelV1.php
author ymh <ymh.work@gmail.com>
Sat, 12 Jun 2010 02:11:56 +0200
changeset 33 6eea55d40942
parent 1 436d4791d7ac
permissions -rw-r--r--
rollback changes made for the player, bumpup version nb

<?PHP

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

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


?>