Skip to content

Commit

Permalink
OLT
Browse files Browse the repository at this point in the history
  • Loading branch information
sebiboga committed Dec 2, 2023
1 parent 4bba74a commit 394440a
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 1 deletion.
7 changes: 7 additions & 0 deletions ROMANIA/OLT/comune.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php
$comune =[



];
?>
8 changes: 8 additions & 0 deletions ROMANIA/OLT/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php
require_once "../functions.php";
require_once "olt.php";


echo json_encode($olt, JSON_PRETTY_PRINT);

?>
7 changes: 7 additions & 0 deletions ROMANIA/OLT/municipii.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php
$municipii =
[


];
?>
12 changes: 12 additions & 0 deletions ROMANIA/OLT/olt.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

require_once 'municipii.php';
require_once 'orase.php';
require_once 'comune.php';

$olt =
createJudet(
"OLT",$municipii,$orase,$comune
);

?>
7 changes: 7 additions & 0 deletions ROMANIA/OLT/orase.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php
$orase=[


];

?>
3 changes: 2 additions & 1 deletion ROMANIA/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
require_once "MEHEDINTI/mehedinti.php";
require_once "MURES/mures.php";
require_once "NEAMT/neamt.php";
require_once "OLT/olt.php";

$judete = [ $alba,$arad,$arges,
$bacau,$bihor,$bistritanasaud,$botosani,$brasov,$braila,$buzau,
Expand All @@ -47,7 +48,7 @@
$galati,$giurgiu,$gorj,
$harghita,$hunedoara,
$ialomita,$iasi,$ilfov,
$maramures,$mehedinti,$mures,$neamt];
$maramures,$mehedinti,$mures,$neamt,$olt];

// aici cream Romania
$tara = createTara(
Expand Down

0 comments on commit 394440a

Please sign in to comment.