Hallo Zusammen,
ich habe ein kleines Problem:
Ich möchte mit html ein Bild aufrufen (das ist noch nicht das Problem, das funktioniert.).
<img src="https://url/image/bild.jpg" alt="Ein Bild">
Allerdings sollte das "bild.jpg" variable sein (= die neueste Datei im image Verzeichnis).
Das funktioniert auch mit folgendem Code:
<?php
// Neueste Datei in einem Verzeichnis anzeigen
$path = 'mein-pfad/'; /***/***/***/***/default-website
$maxTsFile = 0;
$nFileName = "";
foreach(glob($path . '*.*') as $fileName) {
$ts = filemtime($fileName);
if($ts > $maxTsFile) {
$maxTsFile = $ts;
$nFileName = $fileName;
}
}
echo "neuste Datei: " . $nFileName;
?>
Jetzt kommt mein Problem:
Wie kommt die Variable $nFileName in den html code?
Also: <img src="https://url/image/$nFileName" alt="Ein Bild"> (was natürlich nicht funktioniert)?
Das Ganze findet in der index.php statt.
Ich bitte um eure Hilfe! Vielen Dank schon mal im Voraus für eure Mithilfe! (Hab wahrscheinlich ein Brett vor dem Kopf)
GLg Margit