ive got over thousands my clients email in database.
sorting the email with php:
$q = $db->query("SELECT email FROM user LIMIT 200");
while($r = $q->fetch_array(MYSQLI_ASSOC)) :
echo '<input type="checkbox" name="emailList" class="useremail" value="'.$r['email'].'">';
endwhile;
anyone knows how to post the selected email only?. if possible with ajax jquery. well of course i will use phpmailer to post the email.