Skip to content

Commit

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

$bihor =
createJudet(
"BIHOR",$municipii,$orase,$comune
);

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


echo json_encode($bihor, JSON_PRETTY_PRINT);

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

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

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

0 comments on commit 8a82ef0

Please sign in to comment.