Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <?php
  2. $n = 25;
  3.  
  4. ?>
  5. <html>
  6. <head>
  7. <style>
  8. .box{
  9. border:solid 2px gray;
  10. text-align:center;
  11. font:monospace 14pt;
  12. padding: 10px;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <h1>
  18. Salut de pe server, din PHP!
  19. </h1>
  20.  
  21.  
  22. <table>
  23. <?php
  24. for ($i = 1; $i <= $n ; $i++)
  25. {
  26. ?>
  27. <tr>
  28. <?php
  29. for($j=1 ; $j<=$n ; $j++)
  30. {
  31. ?>
  32. <td style="width:10px;background-color:<?=($i+$j)%2 == 1?"#532900":"#ffa74f" ?>" > &nbsp; </td>
  33. <?php
  34. }
  35. ?>
  36. </tr>
  37. <?php
  38. }
  39. ?>
  40. </table>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement