ANKARA'DAKİ TIP FAKÜLTELERİ HALK SAĞLIĞI ANABİLİM DALLARI TOPLANTISI
14 KASIM 2014
// Author: Mian Shafiq-ur-Rehman
$dir = "HALK_SAGLIGI_ AD_BULUSMASI/"; // Resimlerin bulunduط·آ¤ط¹ط›u klasط·آ£ط¢آ¶r
$re = "/\.(jpg|gif|psd)$/"; // Resim tط·آ£ط¢آ¼rleri
$inOneRow = 6; // Bir satط·آ¤ط¢آ±rda kaط·آ£ط¢آ§ resim gط·آ£ط¢آ¶rط·آ£ط¢آ¼ntط·آ£ط¢آ¼lenecek.
?>
function popup_window($imgPath)
{
if(file_exists($imgPath))
{
$size= @getimagesize( $imgPath );
$width=$size[0];
$height=$size[1];
$width = ($width < 200 ? 450 : ($width + 50));
$height = ($height < 300 ? 550 : ($height + 50));
$popup= "
";
return $popup;
}
}
/* Resimler listeleniyor ve tط·آ¤ط¢آ±klandط·آ¤ط¢آ±ط·آ¤ط¹ط›ط·آ¤ط¢آ± zaman pop-up penceresinde orjinal boyutunda gط·آ£ط¢آ¶zط·آ£ط¢آ¼kط·آ£ط¢آ¼yor. */
if(is_dir($dir))
{
$allFiles = opendir($dir);
while ($file = readdir($allFiles))
{
if(!is_dir($dir.'/'.$file))
{
if (preg_match($re,strtolower($file)))
{
$thumbs[] = popup_window($dir.'/'.$file);
}
}
}
closedir($allFiles);
}
$totalThumbs = count($thumbs);
?>
$j=0;
for ($i=0; $i<$totalThumbs; $i++)
{
if($i == $j)
{
$j+=$inOneRow;
echo "";
}
?>
echo $thumbs[$i]?> |
echo "Fotoğraf " . ($i+1)?> |
|
}
?>