Thread Jede zweite Zeile eines Arrays anders formatieren (13 answers)
Opened by cbxk1xg at 2004-12-19 23:14

cbxk1xg
 2004-12-20 00:23
#3830 #3830
User since
2003-10-20
496 Artikel
BenutzerIn
[default_avatar]
Also ich hab's folgendermaßen gelöst...

Code: (dl )
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-->

View full thread Jede zweite Zeile eines Arrays anders formatieren