Also ich hab's folgendermaßen gelöst...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
my row = "";
my $count = 1;
my $switch;
for ($i=0; $i < $max; $i++)
{
($href, $text, $function) = split( "\e", $filelist[$i+$j*$max], 3 );
if ($switch)
{
$switch=0;
$row .= qq|<tr><td bgcolor="#FFFFFF"><a href="$function">function</a> - <a href="$href" class="FileList">$text</a></td></tr>;
$count++;
}
else
{
$switch=1;
$row .= qq|<tr><td bgcolor="#E1E1E1"><a href="$function">function</a> - <a href="$href" class="FileList">$text</a></td></tr>;
$count++;
}
}
Ich zähle einfach bei der Ausgabe, anstatt vorher.\n\n
<!--EDIT|cbxk1xg|1103495126-->