text area shuld not be writable

windows

Guest
Hi all,<br />
I'm writing a form in plain old HTML and I want a drop down with 5 or 6 people's names in it and a box to the side where the selected peoples' email addresses appear automatically followed by a small button marked "Remove" in case someone chooses a wrong name. So that people using the form can send emails to more than one person at once. I don't know how to get the email addresses to the box. I'm grateful for any help. The code I've got so far is:<br />
<br />
<br />
<table><br />
<tr><br />
<td align="right"><br />
<b>Add&nbsp;CC:</b><br />
</td><br />
<td><br />
<select name="newcc:"><br />
<option value="[email protected]">Manfred<br />
</option><br />
<option value="[email protected]">Fred<br />
</option><br />
<option value="[email protected]">Marcel<br />
</option><br />
<option value="[email protected]">Mathias<br />
</option><br />
<option value="[email protected]">Mirela<br />
</option><br />
<option value="[email protected]">Uschi<br />
</option><br />
</select><br />
</td><br />
<td rowspan="4" valign="top"> <br />
<select name="cc" multiple="multiple" size="5"><br />
<option value="[email protected]">[email protected]</option><br />
</select><br />
</td><br />
<td align="right"> <br />
<ACTION="DON'T KNOW YET"> <br />
<input type="submit" value="Remove"><br />
</td><br />
</tr><br />
</table><!--content--><table><br />
<tr><br />
<td align="right"><br />
<b>Add CC:</b><br />
</td><br />
<td><br />
<form><br />
<select name="newcc" onchange="this.form.out=this.form.out+this.options[this.selectedIndex].value"><br />
<option value="[email protected]">Manfred<br />
</option><br />
<option value="[email protected]">Fred<br />
</option><br />
<option value="[email protected]">Marcel<br />
</option><br />
<option value="[email protected]">Mathias<br />
</option><br />
<option value="[email protected]">Mirela<br />
</option><br />
<option value="[email protected]">Uschi<br />
</option><br />
</select><br />
</td><br />
<td rowspan="4" valign="top"> <br />
<select name="cc" multiple="multiple" size="5"><br />
<option value="[email protected]">[email protected]</option><br />
</select><br />
</td><br />
<td align="right"> <br />
<TEXTAREA name="out" ROWS=20 COLS=30></TEXTAREA><br />
<input type="submit" value="Remove"><br />
</form><br />
</td><br />
</tr><br />
</table><!--content-->many thanks for the reply. I actually managed to find something from another htmlforums readers' homepage for which I am grateful. I just modified it a bit. I include the code I used in an attached file called "what_i_did.txt".<br />
<br />
Once again - thanks for the help.<br />
<br />
karambos<!--content-->
 
Back
Top