This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
logiweb-wcs/balise/lotissements_json.php

12 lines
350 B
PHP

<?php
if (!defined("_ECRIRE_INC_VERSION")) return; #securite
function balise_LOTISSEMENTS_JSON() {
$lotissements = array();
$result = spip_query("SELECT titre FROM lotis_rubriques WHERE id_parent=1");
while ($row = spip_fetch_array($result))
array_push($lotissements, $row['titre']);
return json_encode($lotissements);
}