document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. //2Dimenziós tömb feltöltése ciklussal
  3. $tomb2D = array();
  4. echo "<table border=\'1\'>";
  5. for ($i=1; $i<=10; $i++){
  6. echo "<tr>";
  7.     for($j=1; $j<=10; $j++){
  8.         $tomb2D[$i][$j] = $i*$j;   
  9.         echo "<td>".$tomb2D[$i][$j]."</td>"; // PLUSZ Kiíratás!
  10.     }
  11. echo "</tr>";
  12. }
  13. echo "</table>";
  14. // eredmény: 10x10-es szorzótábla
  15. ?>
');