diff --git a/prcoviceni/index.php b/prcoviceni/index.php
new file mode 100644
index 0000000..aa3715b
--- /dev/null
+++ b/prcoviceni/index.php
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/prcoviceni/init.php b/prcoviceni/init.php
new file mode 100644
index 0000000..d091e5a
--- /dev/null
+++ b/prcoviceni/init.php
@@ -0,0 +1,27 @@
+";
+ foreach ($GLOBALS["adresy"] as $url) {
+ echo ''.$url.'';
+ }
+ echo "";
+}
+//funkce pro vytvoření jednoduche CLI kalkulačky
+function kalkulacka(int $c1, int $c2, string $s)
+{
+ switch($s){ //specialni typ vybírání
+ case "scitani": // připad sčitaní
+ $vysledek = $c1+$c2; //sčítaní
+ break; //ukončení switch
+ case "odcitani":
+ $vysledek = $c1-$c2;
+ break;
+ }
+ return $vysledek;
+}
+
+
+?>
\ No newline at end of file