Advertisement
idsystems

PHP_Leccion1.7_03

Jan 19th, 2012
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <?
  2.  
  3. function muestra($valor) {
  4.  
  5.     if ($valor < 0.5)
  6.  
  7.         $color = 'red';
  8.  
  9.     else
  10.  
  11.         $color = 'blue';
  12.  
  13.     echo "<td><font color='$color'>$valor</font></td>\n";
  14.  
  15. }
  16.  
  17. ?>
  18.  
  19. <h1>Tabla</h1>
  20.  
  21. <table border="1">
  22.  
  23. <?
  24.  
  25.     for ($x=0; $x<=2; $x+=0.01) {
  26.  
  27.         echo "<tr>";
  28.  
  29.         muestra($x);
  30.  
  31.         muestra(sin($x));
  32.  
  33.         muestra(cos($x));
  34.  
  35.         echo "</tr>";
  36.  
  37.     }
  38.  
  39. ?>
  40.  
  41. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement