Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?
- function muestra($valor) {
- 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";
- }
- ?>
- <h1>Tabla</h1>
- <table border="1">
- <?
- $nrenglon = 0;
- for ($x=0; $x<=2; $x+=0.01) {
- $nrenglon++;
- echo "<tr>";
- muestra($x);
- muestra(sin($x));
- muestra(cos($x));
- echo "</tr>";
- }
- ?>
- </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement