ok i have the script below which fetch data from mysql...how will i resubmit it to another table since it does not have a combo box name
<?php
while ($row = mysql_fetch_array($query)) {
echo '<select name="items">';
while ($row = mysql_fetch_array($query)) {
echo '<option value="',$row['options'],'">',$row['options'],'</option>';
//echo '<option value="',$row['username'],'">',$row['username'],'</option>';
}
echo '</select>';
}
?>