Hallo
Also mein Problem ist:
Ich habe ein Gallery Script, das auch gut funz jedoch würde ich gerne die Bild-Anzahl pro Page auf 10 Pic's (Thumbnails) begrenzen.
Wie stelle ich dies am besten an?
Hier noch das Script:
<html>
<head>
<title> <?php print "$gal" ?> </title>
</head>
<body bgcolor="#005cbb" text="#FFFFFF" link="#FFFFFF" vlink="#0099FF" alink="#0000CC">
<div align="center">
<font face="Arial, Helvetica, sans-serif">
<?php
#configuration
#specify subdirectory with a / at the end
$subdir = "bilder/";
#Thumpnail directory
$thumpdir = "thump";
#configuration end
print "<h1 align=\"center\"><strong><u>".ucwords($gal)."</u></strong></h1></center>\n";
$verzeichnis = opendir("./".$subdir.$gal);
while($img = readdir($verzeichnis))
{
$parts = explode(".", $img);
if(($parts[1] == "gif") OR ($parts[1] == "jpg") OR ($parts[1] == "png"))
{
$images[] = $img;
}
}
closedir($verzeichnis);
if (count($images) > 0)
{
foreach ($images as $image)
{
print "<a href=/bild.php?image=";
print $image;
print "&gal=";
print $gal;
print ">";
print "<img src=http://www.nezhteil.ch/";
print $subdir.$gal;
print "/";
print $thumpdir;
print "/tn_";
print $image;
print ">";
print "</a>";
}
}
else
{
print "<b> Sorry, no Images available in this gallery: ".$subdir.$gal."<b>\n";
}
?>
</font>
</div>
</body>
</html>
Wer unterstützt mich?
PS: Ich hab mich mit der SUCH-Funktion durch das Forum gekämpft
Also mein Problem ist:
Ich habe ein Gallery Script, das auch gut funz jedoch würde ich gerne die Bild-Anzahl pro Page auf 10 Pic's (Thumbnails) begrenzen.
Wie stelle ich dies am besten an?
Hier noch das Script:
<html>
<head>
<title> <?php print "$gal" ?> </title>
</head>
<body bgcolor="#005cbb" text="#FFFFFF" link="#FFFFFF" vlink="#0099FF" alink="#0000CC">
<div align="center">
<font face="Arial, Helvetica, sans-serif">
<?php
#configuration
#specify subdirectory with a / at the end
$subdir = "bilder/";
#Thumpnail directory
$thumpdir = "thump";
#configuration end
print "<h1 align=\"center\"><strong><u>".ucwords($gal)."</u></strong></h1></center>\n";
$verzeichnis = opendir("./".$subdir.$gal);
while($img = readdir($verzeichnis))
{
$parts = explode(".", $img);
if(($parts[1] == "gif") OR ($parts[1] == "jpg") OR ($parts[1] == "png"))
{
$images[] = $img;
}
}
closedir($verzeichnis);
if (count($images) > 0)
{
foreach ($images as $image)
{
print "<a href=/bild.php?image=";
print $image;
print "&gal=";
print $gal;
print ">";
print "<img src=http://www.nezhteil.ch/";
print $subdir.$gal;
print "/";
print $thumpdir;
print "/tn_";
print $image;
print ">";
print "</a>";
}
}
else
{
print "<b> Sorry, no Images available in this gallery: ".$subdir.$gal."<b>\n";
}
?>
</font>
</div>
</body>
</html>
Wer unterstützt mich?
PS: Ich hab mich mit der SUCH-Funktion durch das Forum gekämpft
Kommentar