I have a form with about 60 checkbox pairs (different arrays), ideally they need to be output as checkboxes, not "yes" and "no". I found something similar in this post: http://www.chronoengine.com/forums/posts/f5/t94438/chronoforms-to-pdf-with-checkmark.html?hilit=checkbox
1) I'm not sure if this would do it for ALL the checkboxes, or it's setup just for one specific field (ideally I'd like ALL checkboxes to display as actually checkboxes in the email, and prefer not to have to write code for them individually for all 60...)
2) I'm not sure where I would put it in the actions.
Thanks
Lydia
<?php if($_POST['sic_aziendale'] == "1") {
echo "<img src=\"/image/square.jpg\" />";
}else{
echo "Ffff";
}?>
1) I'm not sure if this would do it for ALL the checkboxes, or it's setup just for one specific field (ideally I'd like ALL checkboxes to display as actually checkboxes in the email, and prefer not to have to write code for them individually for all 60...)
2) I'm not sure where I would put it in the actions.
Thanks
Lydia