Gossamer Forum
Home : Products : DBMan : Installation :

Multiple checbox configuration

Quote Reply
Multiple checbox configuration
How do you implement multiple check boxes? the only documentation only shows one example:
# Checkbox fields. Field name => Checkbox value.
%db_checkbox_fields = ( Popular => 'Yes' );
Quote Reply
Re: [rderagon] Multiple checbox configuration In reply to
Same as you would for any other, separate by commas, and no comma at the end. I put them on new lines for claraficvation, but DO NOT put a new line with in a checkbox.


%db_checkbox_fields = (

Popular => 'Yes', # do not split this line
Unusual => 'Yes',
Scary => 'Yes' #no comma here

);