This commit is contained in:
2022-04-07 14:54:21 +02:00
commit 044ec5f379
55 changed files with 1220 additions and 0 deletions

14
misc/szorzotabla.php Normal file
View File

@@ -0,0 +1,14 @@
<html>
<head> <title>Szorzotabla</title></head>
<body>
<?php
for($i = 1; $i <= 10; $i++){
for($j = 1; $j <= 10; $j++){
$value = $i * $j;
echo($value." ");
}
echo("<br>" );
}
?>
</body>
</html>