Advertisement
idsystems

PHP_Leccion1.7_04

Jan 19th, 2012
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.61 KB | None | 0 0
  1. <?
  2.  
  3. function muestra($valor) {
  4.  
  5.     if ($nrenglon % 2)
  6.  
  7.         $fondo = '#eeeeee';
  8.  
  9.     else
  10.  
  11.         $fondo = '#dddddd';
  12.  
  13.  
  14.  
  15.     if ($valor < 0.5)
  16.  
  17.         $color = 'red';
  18.  
  19.     else
  20.  
  21.         $color = 'blue';
  22.  
  23.  
  24.  
  25.     echo "<td bgcolor='$fondo'><font color='$color'>$valor</font></td>\n";
  26.  
  27. }
  28.  
  29. ?>
  30.  
  31. <h1>Tabla</h1>
  32.  
  33. <table border="1">
  34.  
  35. <?
  36.  
  37.     $nrenglon = 0;
  38.  
  39.  
  40.  
  41.     for ($x=0; $x<=2; $x+=0.01) {
  42.  
  43.         $nrenglon++;
  44.  
  45.         echo "<tr>";
  46.  
  47.         muestra($x);
  48.  
  49.         muestra(sin($x));
  50.  
  51.         muestra(cos($x));
  52.  
  53.         echo "</tr>";
  54.  
  55.     }
  56.  
  57. ?>
  58.  
  59. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement