Advertisement
Guest User

Untitled

a guest
Apr 7th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <table>
  2.     <tr>
  3. <?
  4. $range = range(1,99);
  5.  
  6. foreach($range as $zahl){
  7.     if(($zahl % 2 )!= 0){
  8.         if(($zahl % 3 == 0)){
  9.             echo '<td>'. $zahl .'</td></tr><tr>';
  10.         }
  11.         else echo '<td>'. $zahl .'</td>';
  12.         }
  13.     elseif(($zahl % 2 == 0)){
  14.         if(($zahl % 3 ==0)){
  15.             echo '<td style="font-weight:bold">'. $zahl .'</td></tr><tr>';
  16.         }
  17.         else echo '<td style="font-weight:bold">'. $zahl .'</td>';
  18.     }
  19. }  
  20.  
  21.  
  22. ?>
  23.     </tr>
  24. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement