client/player/js/cinelabModelV1.php
author samuel huron <admin@cybunk.com>
Tue, 15 Jun 2010 14:04:01 +0200
changeset 49 af3778eab5e8
parent 1 436d4791d7ac
permissions -rw-r--r--
enlever alert

<?PHP

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

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


?>