Ankündigung

Einklappen
Keine Ankündigung bisher.

flexx scanner

Einklappen

Neue Werbung 2019

Einklappen
X
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • flexx scanner

    Hi Leute,

    ich bekomme bei folgenden Script folgenden Fehler:

    Code:
    <?php
    
    if($_GET['action'] == "") {
    
    $handle = opendir('includes/gallery/');
    
    while ($file = readdir($handle)) {
    
    if ($file != "." && $file != "..") {
    
    $array[] = $file;
    
    }
    
    }
    
    closedir($handle);
    
    sort($array);
    
    foreach($array as $file) {
    
    $replace = "";
    $file = str_replace(".JPG", $replace, $file);
    
    echo "<a href=\"http://der-marv.de/index.php?modul=pics&action=opengal&gal=$file\">$file</a>
    ";
    
    }
    
    }
    
    ?>
    
    
    <?php
    
    if($_GET['action'] == "opengal") {
    
    $gal = $_GET['gal'];
    
    include("includes/gallery/$gal");
    
    }
    
    ?>

    Fatal error: input in flex scanner failed in /../gallery/sitin2 on line 1
    Ich hab keine Ahnung wo dran das liegt :/

    Ich hoffe ihr könnt mir helfen!


    Gruß marv
Lädt...
X