Skip to content

Commit

Permalink
calarasi
Browse files Browse the repository at this point in the history
  • Loading branch information
sebiboga committed Dec 2, 2023
1 parent 4946208 commit 7f8d446
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 1 deletion.
12 changes: 12 additions & 0 deletions ROMANIA/CALARASI/calarasi.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';

$calarasi =
createJudet(
"CĂLĂRAȘI",$municipii,$orase,$comune
);

?>
7 changes: 7 additions & 0 deletions ROMANIA/CALARASI/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/CALARASI/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php
require_once "../functions.php";
require_once "calarasi.php";


echo json_encode($calarasi, JSON_PRETTY_PRINT);

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


];

?>
4 changes: 3 additions & 1 deletion ROMANIA/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
require_once "BRAILA/braila.php";
require_once "BUZAU/buzau.php";
require_once "CARASSEVERIN/carasseverin.php";
require_once "CALARASI/calarasi.php";

$judete = [$alba,$arad,$arges,$bacau,$bihor,$bistritanasaud,$botosani,$brasov,$braila,$buzau,$carasseverin];
$judete = [$alba,$arad,$arges,$bacau,$bihor,$bistritanasaud,$botosani,$brasov,$braila,$buzau,$carasseverin,
$calarasi];

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

0 comments on commit 7f8d446

Please sign in to comment.