Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?
- function muestra($valor) {
- global$nrenglon;
- if ($nrenglon % 2)
- $fondo = '#eeeeee';
- else
- $fondo = '#dddddd';
- if ($valor < 0.5)
- $color = 'red';
- else
- $color = 'blue';
- echo "<td bgcolor='$fondo'><font color='$color'>$valor</font></td>\n";
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement