Mahlzeit mm,
Funktioniert leicher nicht. Es kommt der Fehler: Parse error: syntax error, unexpected '}', expecting ',' or ';' in /mnt/web1/12/41/52155741/htdocs/Dominik/sono/php/navigal.php on line 18
siehe: http://www.dominik-meier.de/sono/sono2.phpUnd was befindet sich in der entsprechenden Zeile 18 (bzw. in den Zeilen davor)? Woher sollen das die hiesigen Forumsteilnehmer wissen bzw. wie sollen sie das erraten können?
MfG,
EKKi
Zeile 18 müsste: "if ($items = 0){ " stehen; hier ist das script:
<?php
if (array_key_exists ('sono', $_GET)) {
if (file_exists('pics/sono_'.$_GET ['sono'].'.jpg')) {
$size = getimagesize('pics/sono_'.$_GET ['sono'].'.jpg');
$height = $size['1'];
$width = $size['0'];
//sonoanzeige
echo '<img src="pics/sono_'.$_GET ['sono'].'.jpg" width="'.$size['0'].'" height="'.$size['1'].'" alt="" />';
}
$files = scandir('/pics');
$items = count($files);
$forward = $_GET ['sono'] +1;
$back = $_GET ['sono'] -1;
// vor
if ($items > $forward){
$forward = 01;
echo '<a href="sono.php?sono='.$forward.'" >Nächstes Bild</a>'
} else echo '<a href="sono.php?sono='.$forward.'" >Nächstes Bild</a>';
//zurück
if ($items = 0){
$back = $items;
echo '<a href="sono.php?sono='.$back.'" >Vorheriges Bild</a>'
} else echo '<a href="sono.php?sono='.$back.'" >Vorheriges Bild</a>';
} else die();
?>