Test afiichage via article

Liste des circuits de Seine-et-Marne situées dans les zones gérées par l'ONF.
{source}
<?php

if (!(defined('_JEXEC') || defined('_VALID_MOS'))) {
die('Direct Access to this location is not allowed.');
}

/*  version web */

$database = &JFactory::getDBO();

// SNE77

//echo '<br/>';
// echo '<span style="color: blue; font-weight: bold;">';
// echo 'Liste SNE 77 ' ;
$database->setQuery("select count(*) from bcos_f_circuits where gestion='ONF77';") ;
$nb_circuits = $db->loadResult();
echo '<span style="color: black; font-weight: bold";>';
echo $nb_circuits.' circuits au total : ';

$database->setQuery("select count(*) from bcos_f_circuits where gestion='ONF77' and region='3PI';") ;
$nb_circuits = $db->loadResult();
echo '<span style="color: black; font-weight: normal";>';
echo $nb_circuits.' dans les Trois Pignons, ';

$database->setQuery("select count(*) from bcos_f_circuits where gestion='ONF77' and region='FD';") ;
$nb_circuits = $db->loadResult();
// echo '<span style="color: black; font-weight: normal";>';
echo $nb_circuits.' en Forêt Domaniale de Fontainebleau et ';

$database->setQuery("select count(*) from bcos_f_circuits where gestion='ONF77' and region='SUD';") ;
$nb_circuits = $db->loadResult();
// echo '<span style="color: black; font-weight: normal";>';
echo $nb_circuits.' dans le bois de La Commanderie.';
echo '<br/>';

?>

{/source}

Pour une lecture optimale il est mieux de choisir chaque zone (Trois Pignons, Forêt Domaniale, Commanderie) séparément : on a l'ensemble des circuits de la zone sur une seule page.