New file |
0,0 → 1,17 |
<div class="ods_ou_phenoclim"> |
<div class="titre_bloc"> |
ODS ou phenoclim</div> |
<form action="" id="form_commune_phenoclim" method="post"> |
<label for="code_postal_commune">Entrez votre code postal </label> <input id="code_postal_commune" name="code_postal_commune" size="5" type="text" /> |
<input type="submit" value="tester" /> |
</form> |
|
<?php if(isset($_POST['code_postal_commune'])) { |
$adresse_test = 'http://www.obs-saisons.fr/applications/jrest/OdsCommune/estUneCommunePhenoclim/?code_postal='.$_POST['code_postal_commune']; |
$commune_phenoclim = file_get_contents($adresse_test); |
?> |
<div class="info_ods_ou_phenoclim"> |
Votre commune est une commune : <?= ($commune_phenoclim == 'true') ? 'phenoclim' : 'ODS' ?> |
</div> |
<? } ?> |
</div> |