Skip to content

Commit

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


echo json_encode($satumare, JSON_PRETTY_PRINT);

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


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


];

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

$satumare =
createJudet(
"SATU MARE",$municipii,$orase,$comune
);

?>
4 changes: 3 additions & 1 deletion ROMANIA/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
require_once "NEAMT/neamt.php";
require_once "OLT/olt.php";
require_once "PRAHOVA/prahova.php";
require_once "SATUMARE/satumare.php";

$judete = [ $alba,$arad,$arges,
$bacau,$bihor,$bistritanasaud,$botosani,$brasov,$braila,$buzau,
Expand All @@ -52,7 +53,8 @@
$maramures,$mehedinti,$mures,
$neamt,
$olt,
$prahova];
$prahova,
$satumare];

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

0 comments on commit a0cbc90

Please sign in to comment.