Erhan Yakut Software Developer @Binalyze | Founder @Passwall | Golang Enthusiast | Open Sorcerer

Php İle Basit Bir Fotoğraf Galerisi

38 sec read



İnternette her zamanki turumu atarken, yine kodlara boğulmuşken böyle bir kod çıktı karşıma. Tam bir pratik zeka ürünü. Oldukça basit bir fotoğraf galerisi. Bir klasörde 1.jpg, 2.jpg, 3.jpg gibi resimlerinizin olduğu bir klasördeki resimleri anında fotoğraf galerisi haline getirebiliyorsunuz bu kod ile.

Yazarının notunu da silmiyorum. Buyrun inceleyin
[php]<?php
//Script © Matt Ford – http://www.matthewford.co.uk
//Deneme sayfasi= http://www.saf-clan.cjb.net/shots.php

if( ! isset($_GET[‘pic’]))
{$pic=1;}
if(isset($_GET[‘pic’]))
{
$pic=$_GET[‘pic’];
//resmi goster
echo ‘<img src="images/’.$pic.’.jpg" alt="Pic ‘.$pic.’"><br>’;
$nextpic = $pic + 1;
$prevpic = $pic – 1;
//onceki butonu
if( $prevpic > 0 )
{
echo ‘[<a href="’.$PHP_SELF.’?pic=’.$prevpic.’">Previous</a>]’;
}
//sonraki butonu
if( $nextpic <= 19 )
{
echo ‘[<a href="’.$PHP_SELF.’?pic=’.$nextpic.’">Next</a>]’);
}
}
?>[/php]



Erhan Yakut Software Developer @Binalyze | Founder @Passwall | Golang Enthusiast | Open Sorcerer