Bonjour,
Pourquoi tu veux absolument un évènement onclic ?
Un simple form suffirai dans ce cas précis
<FORM action="demande.php" name="form" method="post">
<SELECT name="demande"
<?php
$resultat=mysql_query("SELECT DISTINCT LKLO from demande");
if ($resultat){
$num_results=mysql_num_rows($resultat);
for($i=0; $i<$num_results-1; $i++){
// Pour chacune de ces lignes on recupere un tableau associatif
$ligne=mysql_fetch_array($resultat);
?>
<OPTION value=<?php echo $ligne['LKLO'] ?> ><?php echo $ligne['LKLO'];
}
}
?>
</OPTION>
</SELECT>
</FORM>
et ton fichier demande.php qui récupère le résultat :
<?php
echo $_POST["demande"];
?>