Hi,
Regarding Q2:
you can get all the oldingroup values in selectbox ..
After submitting this form u could access "oldingroup" ..
<?php
$query="select oldingroup from urTable";
$query = stripSlashes($query) ;
$result = mysql_query($query);
print "<TD><SELECT NAME=\"oldingroup[]\" multiple>";
for ($i = 0; $i < mysql_num_rows($result); $i++)
{
$row_array = mysql_fetch_row($result);
for ($j = 0; $j < mysql_num_fields($result); $j++)
{
print("<OPTION>" . $row_array[$j]."</OPTION>");
}
}
print("</SELECT></TD>");
?>
And after this you can access $oldingroup..
Hope this would help..
--Shastry