Array aus MySQL Datenbank oder Textdatei laden

Commander Fox

Grünschnabel
Hallo liebe Community,

ich suche habe aber noch nichts passendes gefunden, ich möchte den folgenden PHP Code, dort die Arrays aus einer Datenbank laden oder einer Textdatei !?

PHP:
<?php
 
$download = $_GET['download'];
 
$basedir = "/*******/downloads";
 
$filelist = array(
  "file1" => "files/File1_Test.pdf",
  "file2" => "files/File2_Test.pdf"
);
 
if (!isset($filelist[$download]))
  die("Datei $download nicht vorhanden.");
 
$filename = sprintf("%s/%s", $basedir, $filelist[$download]);
 
header("Content-Type: application/octet-stream");

$save_as_name = basename($filelist[$download]);
header("Content-Disposition: attachment; filename=\"$save_as_name\"");
 
readfile($filename);

?>

MySQl - Connect und so ist kein Problem ich möchte nur, dass das Script die Variablen aus der Datenbank lädt !

Danke schon im Voraus
 
Zurück