client/player/js/cinelabModelV1.php
author ymh <ymh.work@gmail.com>
Tue, 15 Jun 2010 00:28:36 +0200
changeset 43 365124aa9efd
parent 1 436d4791d7ac
permissions -rw-r--r--
increase version

<?PHP

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

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


?>