Hello PHP Developers,
I Have a emails listed with checkboxes so that I can send the mail to members with checked box only.I'm wondering how can I know which checkbox is checked to send the email. I have a checkbox having values of member ID .Any help will be appreciated.
Thank you
Dibyendra
Mulivalued parameters
Moderator: General Moderators
I have never done this but have seen other posts that talk about this. Do a quick search and see what you can come up with. Heres what I think it is:
Code: Select all
<?php
<input type="checkbox" name="emailmember" value="member[1]">
<input type="checkbox" name="emailmember" value="member[2]">
<input type="checkbox" name="emailmember" value="member[3]">
?>