Skip to content

Commit

Permalink
giurgiu
Browse files Browse the repository at this point in the history
  • Loading branch information
sebiboga committed Dec 2, 2023
1 parent 231ccea commit 338a103
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 1 deletion.
7 changes: 7 additions & 0 deletions ROMANIA/GIURGIU/comune.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php
$comune =[



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

$galati =
createJudet(
"GALAȚI",$municipii,$orase,$comune
);

?>
8 changes: 8 additions & 0 deletions ROMANIA/GIURGIU/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php
require_once "../functions.php";
require_once "giurgiu.php";


echo json_encode($giurgiu, JSON_PRETTY_PRINT);

?>
7 changes: 7 additions & 0 deletions ROMANIA/GIURGIU/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/GIURGIU/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 @@ -28,9 +28,10 @@
require_once "DAMBOVITA/dambovita.php";
require_once "DOLJ/dolj.php";
require_once "GALATI/galati.php";
require_once "GIURGIU/giurgiu.php";

$judete = [$alba,$arad,$arges,$bacau,$bihor,$bistritanasaud,$botosani,$brasov,$braila,$buzau,$carasseverin,
$calarasi,$cluj,$constanta,$covasna,$dambovita,$dolj,$galati];
$calarasi,$cluj,$constanta,$covasna,$dambovita,$dolj,$galati,$giurgiu];

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

0 comments on commit 338a103

Please sign in to comment.