Folgendes klappt nicht wie gedacht:
Hier online, bitte auf die Kommentare im Quelltext achten.
Code
<?PHP
$ezahl = 20;
if(!isset($_GET['show']))
{
$bis = $ezahl+1;
$show = 1;
}
else
{
$bis = $_GET['show']+$ezahl;
$show = $_GET['show'];
}
$verz=opendir("images/banner");
$linkl = array ("0");
while ($file = readdir ($verz))
{
if($file != "." && $file != ".." && $file != $filename)
{
$gros = ucfirst($file);
array_push ($linkl, "$gros");
}
}
$anzahl = count($linkl);
sort($linkl);
for($x=$start;$x<$bis;$x++)
{
echo '<tr><td colspan="3">[img]images/spacer.gif[/img]</td></tr>';
echo '<tr><td class="box1">';
echo '[url='http://www.x-basstar-x.de/'><img src='][/url]';
echo '
Html- Code:</p><textarea style="padding:4px;" cols="90" rows="3" class="bannertausch" readonly><a target="_blank" href="http://www.x-basstar-x.de/"><img border="0" src="http://www.x-basstar-x.de/images/banner/';
echo $linkl[$x];
echo '" width="" height="" alt="www.x-basstar-x.de"></a></textarea>';
echo '
Forencode:</p><textarea style="padding:4px;" cols="90" rows="2" class="bannertausch" readonly>[url=http://www.x-basstar-x.de/] [img]http://www.x-basstar-x.de/images/banner/';
echo $linkl[$x];
echo '[/img][/url]</textarea>';
echo '</td></tr>';
}
if(!isset($_GET['show']))
{
$w = 1+$ezahl;
echo "<a href=\"index.php?action=bannertausch&show=".$w."\">vor »</a>";
}
else
{
$w = $ezahl+$_GET['show'];
$z = $_GET['show']-$ezahl;
if($z >= 1){ echo "<a href=\"index.php?action=bannertausch&show=".$z."\">« zurück</a>"; }
if($w <= $anzahl){ echo " <a href=\"index.php?action=bannertausch&show=".$w."\">vor »</a>"; }
}
closedir($verz);
?>
Alles anzeigen
Vielen Dank im voraus.