le formulaire :
<FORM name='formexport'>
<TABLE align='center' border=0>
<tr>
<td align='center'>
<a href="javascript:affiche()">choisir la/les tables</a>
</td>
</tr>
<tr>
<td align='center' >
<TEXTAREA name='tablearea' READONLY ></TEXTAREA>
</td>
</tr>
<tr>
<td align='center'>
condition sur date (jj/mm/aaaa)<br><hr>
</td>
</tr>
<tr>
<td align='center'>
<SELECT NAME="operateurs[]" SIZE="1" >
<OPTION VALUE=" ">
<OPTION VALUE="SUP"> >
<OPTION VALUE="SUPEGAL"> >=
<OPTION VALUE="INF"> <
<OPTION VALUE="INFEGAL"> <=
</SELECT>
<input type='texte' name='date' size='10' maxlength='10' >
</td>
</tr>
</TABLE>
</FORM>
<SCRIPT LANGUAGE="JavaScript">
function affiche(){
window.open('liste_tables.php','blabla', 'width=50 height=300');
}</SCRIPT>
une petite pop up avec une liste ... et l'appel de la fonction suivante lorsqu'on a choisi<SCRIPT LANGUAGE="JavaScript">
function RecupValeur(val)
{
//alert(window.opener.document.formexport.tablearea.value);
window.opener.document.formexport.tablearea.value=val+".";
//window.opener.export.value=window.opener.form.sql.value+","+val;
//window.opener.form.submit();
//window.close();
}</SCRIPT>
ce que je souhaite c'est concaténer dans la TEXTAREA 'tablearea' les champs choisis...sachant que ca marche nikel si je met ".value=car;"
une idée ?