Jump to content

getting multiple valus from a list menu with multiple select


gabrielkolbe

Recommended Posts

I have a dynamically generated list, I want a user to be able to select more than one value, for each one of these values I want to add a seperate entry in to the db, I can seem to get an array with the $_POST[] value of the form, can any one give me some advice here?

here is the dynamic generated form..

 

	<select name="sub1" size="<?=$check?>" multiple>
<option>ALL</option>
<?

$query = "
SELECT 
resourcesubtype.Type, resourcesubtype.ID
FROM 
rates
WHERE AND resourcetype = ".$_POST['resourcetype'].""; 

$result = mysql_query($query);
$check = mysql_num_rows($result);
while ($row = mysql_fetch_assoc($result)) {
  echo '<option';
if ($row['ID'] ==$_POST['sub1']) {echo ' selected'; }
  echo ' value = '.$row['ID'].'>';
  echo $row['ID'].' '.$row['Type']; 
  echo '</option>';
}
  
?> 
</select>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.