Skip to content

Commit

Permalink
BACAU
Browse files Browse the repository at this point in the history
  • Loading branch information
sebiboga committed Dec 2, 2023
1 parent 310550d commit f6807bf
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 1 deletion.
12 changes: 12 additions & 0 deletions ROMANIA/BACAU/bacau.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

require_once 'municipii.php';
require_once 'orasea.php';
require_once 'comune.php';

$bacau =
createJudet(
"BACĂU",$municipii,$orase,$comune
);

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


echo json_encode($bacau, JSON_PRETTY_PRINT);

?>
7 changes: 7 additions & 0 deletions ROMANIA/BACAU/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/BACAU/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 @@ -13,8 +13,9 @@
require_once "ALBA/alba.php";
require_once "ARAD/arad.php";
require_once "ARGES/arges.php";
require_once "BACAU/bacau.php";

$judete = [$alba,$arad,$arges];
$judete = [$alba,$arad,$arges,$bacau];

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

0 comments on commit f6807bf

Please sign in to comment.