Spaces:
Running
Running
File size: 427 Bytes
8a56229 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <?php
header('Content-Type: application/json');
header('Access-Control-Allow-Origin: https://marcelovicente.prof'); // Permite apenas requisições do seu domínio
$municipios = [
[
"nome" => "São Paulo",
"uf" => "SP",
"url" => "https://www.saopaulo.sp.gov.br"
],
[
"nome" => "Rio de Janeiro",
"uf" => "RJ",
"url" => "https://www.riodejaneiro.rj.gov.br"
]
];
echo json_encode($municipios);
?> |