Advertisement
Guest User

Untitled

a guest
Oct 8th, 2015
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. while($szam<=100)
  2. {
  3. $color = “white”;
  4. if ( $szam%2 == 1 ) $color = “black";
  5. echo("<td style='width: 30px; height: 30px; background-color: " . $color . "'>".$szam."</td>");
  6. if($szam % 10 == 0) echo("</tr><tr>");
  7.  
  8. $szam++;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement