Facebook
From Edgy Hornbill, 6 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 234
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3.         <head>
  4.                 <meta charset="UFT-8">
  5.                 <title>Strona</title>
  6.                 <link rel="stylesheet" href="glowny.css">
  7.                 <style>
  8.                 table {
  9.                         width:100%;
  10.                         border:1px solid;
  11.                 }
  12.                 td {
  13.                         padding:10px;
  14.                         border:1px solid;
  15.                 }
  16.                 </style>
  17.         </head>
  18.        
  19. <body>
  20.         <?php
  21.         $tekst="Ala ma kota";
  22.         echo "Witaj ".$tekst;  
  23.         $tabela="<table>";
  24.         for($wiersz=1;$wiersz<=10;$wiersz++)
  25.         {
  26.                 $tabela.="<tr>";
  27.                 for($kolumna=1;$kolumna<=10;$kolumna++)
  28.                 {
  29.                         $tabela.="<td>&nbsp;</td>";
  30.                 }
  31.                 $tabela.="</tr>";
  32.         }
  33.         $tabela.="</table>";
  34.         echo $tabela;
  35.         ?>
  36. </body>
  37. </html>