Christian Kruse: statische Variable für alternierende Zeilenhintergrundfarbe

Beitrag lesen

Hallo Sebastian,

function writeRow($file="",$description="",$col="")
{

static $color = 0;

// zum Resetten
if($col == 0) {
  $color = 0;
}

$rowcolor = ($color++ % 2 ? "#F7F7F7":"#FFFFFF");

echo("<tr><td bgcolor="$rowcolor"><a href ="$file">$description</a></td></tr>");

}

Ich hoffe, das Prinzip wird jetzt klar.

Gruesse,
 CK

--
http://sf.net/projects/mod-gzip/
http://sf.net/projects/libtemplate/