Advertisement
idsystems

PHP_Leccion1.7_05

Jan 19th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?
  2. function muestra($valor) {
  3.     global$nrenglon;
  4.     if ($nrenglon % 2)
  5.         $fondo = '#eeeeee';
  6.     else
  7.         $fondo = '#dddddd';
  8.  
  9.     if ($valor < 0.5)
  10.         $color = 'red';
  11.     else
  12.         $color = 'blue';
  13.     echo "<td bgcolor='$fondo'><font color='$color'>$valor</font></td>\n";
  14. }
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement