Base on a query, my output shows up in html table.This data has email ids also.
I kept a check box at the end of each row. When a check box is checked and pressed ‘send email’ button, I want to open my email with all those addresses in the "To’ field.
I am displaying the query results to html table as
[php]
foreach($rowz222 as $key=>$value){
if($key==‘ci_email’) {
echo ‘
}
else{
echo ‘
}
}
echo ‘
[/php]
Now I do not know how to assign value to each check box; and how to proceed further.
I need this get this working ASAP. Thanks in advance.