View Single Post
ישן 15-05-06, 18:35   # 2
RS324
תודה על תרומתך.
 
מיני פרופיל
תאריך הצטרפות: May 2006
הודעות: 3,173

RS324 לא מחובר  

תנסה לעשות משהו כזה :

PHP קוד:
<select name="myselect" >
<
option value="1" onclick="document.mytextarea.value=document.mytextarea.value + '1'">1</option>
<
option value="2" onclick="document.mytextarea.value=document.mytextarea.value + '2'">2</option>
<
option value="3" onclick="document.mytextarea.value=document.mytextarea.value + '3'">3</option>
<
option value="4" onclick="document.mytextarea.value=document.mytextarea.value + '4'">4</option>

</
select>

<
textarea name="mytextarea"></textarea
  Reply With Quote