Hmmm, so what I you do...
You could make a subdomain and put all of the embed files in there, and then request all of the files from there.
First make a MySQL database and a table named files with two columns... id and url. Then you fill in the ids incrementing and the file urls in the url column.
Then make a file named index.php and then paste this in there:
PHP Code:
<?php
//DB CONNECT //DB SELECT
$file = $_SERVER['QUERY_STRING'];
$query = mysql_query("SELECT * FROM files WHERE id='$file'"); $result = mysql_fetch_array( $query );
header("Location: ".$result['url']);
?>
Then in your page:
|