1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
$donnees = array(
'chaman' => array( 'Amelio', 'Elem', 'Restau'),
'Chasseur' => array('Bete', 'Preci', 'Survie'),
'DK' => array('Sang', 'Givre', 'Imprie')
);
echo '<div class="wow-recrut-wid">';
foreach($donnees as $classe)
{
echo '<p ><span class="wowr-chaman">'.$classe // <-- Ici j'aimerais par exemple Chaman ou Chasseur
.': </span><br />';
foreach($classe as $spe)
{
echo '<label for="'.$this->get_field_id($spe).'">
<input name="'.$this->get_field_name($spe).'" type="checkbox" id="'.$this->get_field_id($spe).'" /> '.$spe.'</label>';
}
echo ' </p>';
} |