JW Player read from php
I'm totally new to PHP and JW player. I have the following code that reads a video file in php and plays it as a video file in the browser: loadfile.php <?php header("pragma : no-cache"); header("Expires: Thu, 19 Nov 1981 08:52:00 GMT"); header("Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0"); header("Content-Description: File Transfer"); header("Content-Type: video/mp4"); header("Content-Location: videos/testvid.mp4"); header("Content-Transfer-Encoding: binary"); header("Content-Length: ".filesize("videos/testvid.mp4")); readfile("videos/testvid.mp4"); ?> JW