CODE
<center><form action="index.php" method="GET">
<input type="submit" name="pierwsze" value="<<">
<input type="submit" name="wstecz" value="<">
<input type="submit" name="dalej" value=">">
<input type="submit" name="ostatnie" value=">>">
</form>
<?php
$a=glob("images/*.jpg");
$c=0;
$d=count($a)-1;
for ($i=0;$i<=$d;$i++){ // MINIATURKI
?>
<img src="<?php echo $a[$i]; ?>" alt="" width="150" height="150">
<?php
}
if (isset($_GET['dalej'])){ // NASTĘPNE ZDJĘCIE
}
<?php
if (isset($_GET['pierwsze'])){ // PIERWSZE ZDJĘCIE
$c=0;
}
?>
<?php
if (isset($_GET['ostatnie'])){ // OSTATNIE ZDJĘCIE
$c=$d;
}
?>
<img src="<?php echo $a[$c]; ?>" alt="" width="1024" height="768">
</center>
<input type="submit" name="pierwsze" value="<<">
<input type="submit" name="wstecz" value="<">
<input type="submit" name="dalej" value=">">
<input type="submit" name="ostatnie" value=">>">
</form>
<?php
$a=glob("images/*.jpg");
$c=0;
$d=count($a)-1;
for ($i=0;$i<=$d;$i++){ // MINIATURKI
?>
<img src="<?php echo $a[$i]; ?>" alt="" width="150" height="150">
<?php
}
if (isset($_GET['dalej'])){ // NASTĘPNE ZDJĘCIE
}
<?php
if (isset($_GET['pierwsze'])){ // PIERWSZE ZDJĘCIE
$c=0;
}
?>
<?php
if (isset($_GET['ostatnie'])){ // OSTATNIE ZDJĘCIE
$c=$d;
}
?>
<img src="<?php echo $a[$c]; ?>" alt="" width="1024" height="768">
</center>