Source: lesson_02_statics_2.php | Résultat |
<?php print "<table width=\"300\">\n"; for($count=0; $count < 10; $count++) { $RowColor = useColor(); print("<TR><TD bgcolor=$RowColor>"); print("Je suis la ligne $count</td></TR>\n"); } print "</table>\n"; //----------------------------------------------------- function useColor() { static $ColorValue; if($ColorValue == "lightblue") { $ColorValue = "white"; } else { $ColorValue = "lightblue"; } return($ColorValue); } ?>
|
Je suis la ligne 0 |
Je suis la ligne 1 |
Je suis la ligne 2 |
Je suis la ligne 3 |
Je suis la ligne 4 |
Je suis la ligne 5 |
Je suis la ligne 6 |
Je suis la ligne 7 |
Je suis la ligne 8 |
Je suis la ligne 9 |
|