I have a website with multi-level accounts and want to be able to email to certain memberships using a multiple dropdown select
Current Code for Select:
<select multiple="multiple" name="mtid" id="mtid">
<? // Get group list
$smgres=@("SELECT mtid,accname FROM ".$prefix."membertypes");
while($smgrow=@mysql_fetch_array($smgres))
{
?>
<option value="<?=$smgrow["mtid"];?>"><?=$smgrow["accname"];?></option>
<?
}
?>
</select>
When I pick one membership type it works but when I pick more then one it does not send the emails
thanks
Glen