Hi..hab ein Problem mit php.
ich will, dass wenn ich auf einen button klicke auf der seite das nächste bild angezeigt wird. allerdings scheint er die variablenwerte nicht zu speichern. Deshalb wird immer nur das selbe bild gezeigt.
>>Hier die Seite<<
und das Script:
<body>
<h4>Bilder GW-Wasserfälle</h4>
<form name="form1" action=gw-wasserfaelle.php method=get>
<input type="submit" value="< Back" name="back">
<input type="submit" value="Next >" name="next"> <p>
<input type="submit" value="1024x768" name="big">
<input type="submit" value="800x600" name="small"> <p>
</form>
<p>
<?php
$hi=600;
$wi=800;
$anzahl=11;
$a=1;
if (isset($_GET['big'])) { $hi=768; $wi=1024;
echo ("<img src=gw".$a.".jpg height=".$hi." width=".$wi.">");}
if (isset($_GET['small'])) { $hi=600; $wi=800;
echo ("<img src=gw".$a.".jpg height=".$hi." width=".$wi.">");}
if (isset($_GET['next'])) {
$a=$a++;
if ($a==($anzahl+1)){ $a=1;}
echo ($a."/".$anzahl);
echo ("<img src=gw".$a.".jpg height=".$hi." width=".$wi.">");
}
if (isset($_GET['back'])) {
$a=$a-1;
if ($a==0){ $a=$anzahl;}
echo ($a."/".$anzahl);
echo ("<img src=gw".$a.".jpg height=".$hi." width=".$wi.">");
}
?>
</body>
Vielen Dank schonmal
MfG
Tobi
SLik Gast |