The cart is empty

To display a list of files on the server using PHP, you can use the following script. This script will go through the specified directory (in your case, it could be the root directory of the server or any other directory) and list all the files and directories it contains.

First, make sure that you have the correct permissions set to read the contents of the directory from the server.

 

<?php

$directory = "."; // Nastavte cestu k adresáři, který chcete procházet

if (is_dir($directory)){
    if ($dirHandle = opendir($directory)) {
        echo "Výpis souborů a adresářů v '$directory':<br><br>";

        while (($file = readdir($dirHandle)) !== false){
            // Přeskočení speciálních adresářů "." a ".."
            if ($file != "." && $file != "..") {
                // Vytvoření odkazu pro každý soubor/adresář
                echo "<a href='$file' target='_blank'>$file</a><br>";
            }
        }

        closedir($dirHandle);
    } else {
        echo "Nelze otevřít adresář '$directory'";
    }
} else {
    echo "'$directory' není adresář";
}
?>