Hi,
I need help to create a multiple selection form. I have to give clients option from a dropdown menu, and the need to press submit on a option and add that to their form. Then scroll to next form and press add on next. etc
I have made an basic dropdown menu and submit section but is stuck on adding the choises together.
<tr>
<td width="41"><label>
<select name="beef" id="beef">
<?php
do {
?>
<option value="<?php echo $row_beef['snit']?>"><?php echo $row_beef['snit']?></option>
<?php
} while ($row_beef = mysql_fetch_assoc($beef));
$rows = mysql_num_rows($beef);
if($rows > 0) {
mysql_data_seek($beef, 0);
$row_beef = mysql_fetch_assoc($beef);
}
?>
</select>
</label></td>
<td width="144"><label>
<input type="text" name="kgbeef" id="kgbeef" />
</label></td>
<td width="144"><label>
<input type="text" name="pack" id="pack" />
</label></td>
<td width="56"><label>
<input type="submit" name="ADD" id="ADD" value="Submit" />
</label></td>
</tr>