le 01/02/2003 à 03:57
Layer
Salut !
J'ai trouver un truc assez sympa surtout si comme moi vous voulez alterner les couleurs d'un tableau (par exemple les lignes de votre forum qui facilitera la vue).
----------------------------------------------------------
fonctions.inc.php :
<php
function couleur()
{
static $coul
if($coul == #CCCCFF)
$coul = #9999FF;
else
$coul = #CCCCFF;
return $coul;
}
?>
----------------------------------------------------------
votre_page.php :
<html>
<head>
<title>essai de couleurs</title>
</head>
<body bgcolor=#FFFFFF>
<TABLE border=0>
<?php
require(FONCTIONS/couleur.php3);
for($i=0; $i<5; $i++)
{
$c = Couleur();
print(
<TR bgcolor=$c>
);
print( <TD>ligne $i</TD>
);
print(</TR>
);
}
?>
</TABLE>
</body>
</html>
----------------------------------------------------------
Il est pas compliquer à comprendre :
quand
i=0 => $c vaut $coul1
i=1 => $c vaut $coul2
i=2 => $c vaut $coul1
etc...
Voila bonne prg !
J'ai trouver un truc assez sympa surtout si comme moi vous voulez alterner les couleurs d'un tableau (par exemple les lignes de votre forum qui facilitera la vue).
----------------------------------------------------------
fonctions.inc.php :
<php
function couleur()
{
static $coul
if($coul == #CCCCFF)
$coul = #9999FF;
else
$coul = #CCCCFF;
return $coul;
}
?>
----------------------------------------------------------
votre_page.php :
<html>
<head>
<title>essai de couleurs</title>
</head>
<body bgcolor=#FFFFFF>
<TABLE border=0>
<?php
require(FONCTIONS/couleur.php3);
for($i=0; $i<5; $i++)
{
$c = Couleur();
print(
<TR bgcolor=$c>
);
print( <TD>ligne $i</TD>
);
print(</TR>
);
}
?>
</TABLE>
</body>
</html>
----------------------------------------------------------
Il est pas compliquer à comprendre :
quand
i=0 => $c vaut $coul1
i=1 => $c vaut $coul2
i=2 => $c vaut $coul1
etc...
Voila bonne prg !