Hi,
[B]while($row = mysql_fetch_array($result))
$rows[] = $row['crseid'];
print "<td>";
print "<select name='ccrseid'>";
foreach($rows as $row)
{
echo "<option value='$row' selected>$row</option>";
}
print "</select>";
print "</td>";
[/B]
Always, i am getting the last values. I can't retrieve the remaining values. Without $_POST[] ARRAY,how i can print the select option values without by clicking "submit" button and once by changing the select option values, and the values in the text box should gets changed. Thanks in advance