bonsoir à tous,
mon souci est que dans mes options, je n'ai qu un choix au lieu de 7..
une petite idée
merci d'avance
mon souci est que dans mes options, je n'ai qu un choix au lieu de 7..
une petite idée
<?php
$reponses = array(
'chx' => array(
'reponse' => 'co',
'mot' => 'un',
'image' => 'img/colis.gif',
'phrase' => 'lis'
) ,
'chx_1' => array(
'reponse' => 'ca',
'mot' => 'un',
'image' => 'img/cafe.gif',
'phrase' => 'fe'
) ,
'chx_2' => array(
'reponse' => 'ki',
'mot' => 'un',
'image' => 'img/kiwi.gif',
'phrase' => 'wi'
) ,
'chx_3' => array(
'reponse' => 'qui',
'mot' => 'une é',
'image' => 'img/equipe.gif',
'phrase' => 'pe'
) ,
'chx_4' => array(
'reponse' => 'cu',
'mot' => 'une',
'image' => 'img/cuisine.gif',
'phrase' => 'isine'
) ,
'chx_5' => array(
'reponse' => 'que',
'mot' => 'un cas',
'image' => 'img/casque.gif',
'phrase' => ''
) ,
'chx_6' => array(
'reponse' => 'quette',
'mot' => 'de la mo',
'image' => 'img/moquette.gif',
'phrase' => ''
)
);
echo '<form class="form_exercices_ou_result" action="correction_c_k_p.php" method="POST" />';
$selected = '';
foreach($reponses as $cle => $reponse)
{
echo '<article class="content_img">';
echo '<figure style="height:80px;margin-top:.1em;">';
echo '<img style="margin:0 0 0 -.5em;" src="' . $reponse['image'] . '" alt="' . $reponse['mot'] . '' . $reponse['phrase'] . '" width:"74" height="74" />';
echo '</figure>';
echo'<p>'.$reponse['mot'].'<select name="'.$cle.'"><option value="'.$reponse['reponse'].'" selected="selected">'.$reponse['reponse'].'</option></select>'.$reponse['phrase'].'</p>';
echo'</article>';
}
echo '<p class="correction_center"><input type="submit" name="correction" value="correction"/></p>';
echo '</form>';
?>
merci d'avance