Hallo,
ich bekomme folgende Fehlermeldung:
Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in C:\apache\htdocs\newpage\screenshots.php on line 22
Und hier der Code:
An was liegt das/wo ist der Fehler?
ich bekomme folgende Fehlermeldung:
Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in C:\apache\htdocs\newpage\screenshots.php on line 22
Und hier der Code:
PHP-Code:
<?PHP
include("includes/zugang_screen.php");
//Datei/Verzeichnisauflistung
//Statt . auch verzeichnisname möglich
$verz = opendir($ordner);
$zahl = 0;
while($file = readdir ($verz) ){
if($file != "." && $file != ".." && $file != $filename){ //Zeile 22
$array[] = $file;
$zahl++;
}
}
//while Ausgabe
asort($filearray);
for($x=0; $x<=$zahl; $x++){
echo "<a href=\"shots.php?id=";
echo $filearray;
echo "&pic=";
echo $picname;
echo "\"><b>";
$ersetzt = strtr($filearray, "_", " ");
$gros = ucfirst($ersetzt);
echo $gros;
echo "</b></a><br>";
}
//while Ausgabe [ENDE]
?>
Kommentar