aktuelle.kurse/old_m133/Modul_Unterlagen_133_VOR/08-Uebungen/03 PHP Grundlagen/kapitel04/file5.php
Müller Harald 507e5da390 muh
2022-05-13 11:53:50 +02:00

8 lines
143 B
PHP

<?php
$datei = "gbook.txt";
$gbook = file($datei);
krsort ($gbook);
foreach ($gbook as $mein_gbook)
echo $mein_gbook,"<br>";
?>