Skip to content

Commit

Permalink
mures
Browse files Browse the repository at this point in the history
  • Loading branch information
sebiboga committed Dec 2, 2023
1 parent 3854f00 commit b63d722
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 1 deletion.
7 changes: 7 additions & 0 deletions ROMANIA/MURES/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/MURES/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php
require_once "../functions.php";
require_once "mures.php";


echo json_encode($mures, JSON_PRETTY_PRINT);

?>
7 changes: 7 additions & 0 deletions ROMANIA/MURES/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/MURES/mures.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';

$mures =
createJudet(
"MUREȘ",$municipii,$orase,$comune
);

?>
7 changes: 7 additions & 0 deletions ROMANIA/MURES/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 @@ -37,6 +37,7 @@
require_once "ILFOV/ilfov.php";
require_once "MARAMURES/maramures.php";
require_once "MEHEDINTI/mehedinti.php";
require_once "MURES/mures.php";

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

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

0 comments on commit b63d722

Please sign in to comment.