[insert_php]
global $wpdb;
$lines = $wpdb->get_results(« SELECT * FROM `terrain` ORDER BY nom »);
echo « |—| « ;
foreach($lines as $line)
{
echo « foreach($lines as $line)
{
echo
»
« .$line->nom. »
« .$line->adresse. »
« .$line->codepostal. » « .$line->ville. »
« .$line->googlemaps. »
« ;
}
}
else
{
$lines = $wpdb->get_results(« SELECT * FROM `terrain` WHERE nom=’Grigny' »);
foreach($lines as $line)
{
echo
»
« .$line->nom. »
« .$line->adresse. »
« .$line->codepostal. » « .$line->ville. »
« .$line->googlemaps. »
« ;
}
}
[/insert_php]