1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
download-manager/index.php

14 lines
464 B
PHP
Raw Normal View History

2015-06-13 17:09:55 +01:00
<?php
2015-06-14 18:07:47 +01:00
require "property-manager.php"; // Initialise properties
require "file_information.php";
2015-06-13 17:09:55 +01:00
$properties = load_properties();
$file_name = $_GET[$properties["file QS"]] or die("No querystring given.");
if (file_exists($file_name)) {$GLOBALS["file"] = generate_file_object($file_name);}
else {die("File '$file_name' does not exist!");}
2015-06-13 17:09:55 +01:00
header("Content Type: text/html");
?>
<html><head><title><?php echo($properties["html title"]);?></title>
</head>
</html>