Php 仅发送选定复选框值的密件抄送电子邮件

Php 仅发送选定复选框值的密件抄送电子邮件,php,email,Php,Email,我正在尝试只向选定的用户发送相同的电子邮件。我正在打印表中的值,希望选择要发送电子邮件的特定用户 <form name="unos" action="mail-proizvodi.php" method="post"> <? echo "<table border='5'> <tr> <th> </th> <th>ID</th> <th>NAZIV<

我正在尝试只向选定的用户发送相同的电子邮件。我正在打印表中的值,希望选择要发送电子邮件的特定用户

<form name="unos" action="mail-proizvodi.php" method="post">

<?
    echo "<table border='5'>
    <tr>
    <th> </th>
    <th>ID</th>
    <th>NAZIV</th>
    <th>ADRESA</th>
    <th>DRZAVA</th>
    <th>GRAD</th>
    <th>EMAIL</th>
    </tr>";
    while($row = mysqli_fetch_array($result))
    {
    echo "<tr>";
    echo '<td><input type="checkbox" name="email[]" value="' . $row['ID'] . '"></td>';
    echo "<td>" . $row['ID'] . "</td>"; 
    echo "<td>" . $row['NAZIV'] . "</td>";
    echo "<td>" . $row['ADRESA'] . "</td>";
    echo "<td>" . $row['DRZAVA'] . "</td>";
    echo "<td>" . $row['GRAD'] . "</td>";
    echo "<td>" . $row['EMAIL'] . "</td>";
    echo "</tr>";
    }
    echo "</table>";
?>
<input type="submit" name="submit" value="submit">
 </form> 

任何帮助或建议都将不胜感激。提前谢谢

我正在发布我遇到的问题的解决方案,以防其他人遇到类似的错误

$mail=$_POST['email'];
$query=  "SELECT `EMAIL` FROM `clanovi` WHERE ID ='$mail[0]'"; 

if(sizeof($mail)>1)
{
        for($i=1; $i<sizeof($mail); $i++)
        {
            $query.=" OR ID = '$mail[$i]' ";
        }
}

$result=mysql_query($query);

if (!$result) {
    echo "Could not successfully run query ($query) from DB: " . mysql_error();
    exit;
}
if (mysql_num_rows($result) == 0) {
    echo "No rows found, nothing to print so am exiting";
    exit;
}

while(FALSE!==($row=mysql_fetch_assoc($result))) {
  $bccfields[] = $row['EMAIL'];
}
echo sprintf("<a href=mailto:prodaja@alternativa.ba?bcc=%s />\n", 
             urlencode(implode(',',$bccfields))); 

echo "Send" ;

mysql_free_result($result);
$mail=$\u POST['email'];
$query=“从`clanovi`中选择`EMAIL`,其中ID='$mail[0]'”;
如果(sizeof($mail)>1)
{
对于($i=1;$i)
0 => string '20' (length=2)
  1 => string '30' (length=2) 
$mail=$_POST['email'];
$query=  "SELECT `EMAIL` FROM `clanovi` WHERE ID ='$mail[0]'"; 

if(sizeof($mail)>1)
{
        for($i=1; $i<sizeof($mail); $i++)
        {
            $query.=" OR ID = '$mail[$i]' ";
        }
}

$result=mysql_query($query);

if (!$result) {
    echo "Could not successfully run query ($query) from DB: " . mysql_error();
    exit;
}
if (mysql_num_rows($result) == 0) {
    echo "No rows found, nothing to print so am exiting";
    exit;
}

while(FALSE!==($row=mysql_fetch_assoc($result))) {
  $bccfields[] = $row['EMAIL'];
}
echo sprintf("<a href=mailto:prodaja@alternativa.ba?bcc=%s />\n", 
             urlencode(implode(',',$bccfields))); 

echo "Send" ;

mysql_free_result($result);