Hi Leute,
ich bekomme bei folgenden Script folgenden Fehler:
Ich hab keine Ahnung wo dran das liegt :/
Ich hoffe ihr könnt mir helfen!
Gruß marv
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 hoffe ihr könnt mir helfen!
Gruß marv
