I guess I'm not sure how you want these to concatenate together...this sounds more like a radiobutton?
Anyhow - you can use if..then logic to look through each checkbox:
Or you could combine these into one big string or something (again - not sure how these are supposed to work if more than one is selected):PHP Code:if(checkbox1.selected) variables.txtMessage = 'Find Your Pace';
if(checkbox2.selected) variables.txtMessage = 'Stress Escape';
// ...
PHP Code:variables.txtMessage = '';
if(checkbox1.selected) variables.txtMessage += 'Find Your Pace, ';
if(checkbox2.selected) variables.txtMessage += 'Stress Escape, ';
// ...




Reply With Quote