I dont know how it is with video files. But with image files at least, you can have php serve the contents of an image file to the page with the correct mime type (basically printing out the mime header and then the file contents). That means when you view the php file you'll actually see an image. That means you can have all your image paths in a database and instead of using the real path to the actual image in the <img> tag, you'd do something like this
PHP Code:
<img src="show_image.php?image_id=12345">
Then nobody will be able to see the actual paths unless they manage to get into your database. Using a mime type for video files instead, I'm guessing you could do the same thing for video files.
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.
|