Skip to content

Commit

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


echo json_encode($salaj, JSON_PRETTY_PRINT);

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

$salaj =
createJudet(
"SĂLAJ",$municipii,$orase,$comune
);

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

$judete = [ $alba,$arad,$arges,
$bacau,$bihor,$bistritanasaud,$botosani,$brasov,$braila,$buzau,
Expand All @@ -54,7 +55,7 @@
$neamt,
$olt,
$prahova,
$satumare];
$satumare,$salaj];

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

0 comments on commit c435e84

Please sign in to comment.