Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?
- function muestra($valor,$fondo='#eeeeee') {
- 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>";
- if ($nrenglon % 2) {
- muestra($x);
- muestra(sin($x));
- muestra(cos($x));
- }
- else {
- muestra($x,"#dddddd");
- muestra(sin($x),"#dddddd");
- muestra(cos($x),"#dddddd");
- }
- echo "</tr>";
- }
- ?>
- </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement