jarvis Posted October 5, 2010 Share Posted October 5, 2010 Hi All, I've a loop which lists a series of options as checkboxes. What I'd like to do is set 1 as a default. But I've no idea how to do it!? Here's the code: <?php $i = 0; ?> <?php if ( bp_has_groups() ) : while ( bp_groups() ) : bp_the_group(); ?> <input type="checkbox" id="field_reg_groups_<?php echo $i; ?>" name="field_reg_groups[]" value="<?php bp_group_id(); ?>" /><?php bp_group_name(); ?> <?php } ?> <?php $i++; ?> Any help is much appreciated TIA Quote Link to comment https://forums.phpfreaks.com/topic/215208-checkbox-list-from-loop-how-to-set-a-default/ Share on other sites More sharing options...
BlueSkyIS Posted October 5, 2010 Share Posted October 5, 2010 starting a while loop in a tertiary operator. does that work?? Quote Link to comment https://forums.phpfreaks.com/topic/215208-checkbox-list-from-loop-how-to-set-a-default/#findComment-1119278 Share on other sites More sharing options...
jarvis Posted October 5, 2010 Author Share Posted October 5, 2010 The whole block of code is <?php $i = 0; ?> <?php if ( bp_has_groups() ) : while ( bp_groups() ) : bp_the_group(); ?> <?php if ( bp_get_group_status() == ('public' || 'private')) { ?> <li class="reg_groups_item"> <input type="checkbox" id="field_reg_groups_<?php echo $i; ?>" name="field_reg_groups[]" value="<?php bp_group_id(); ?>" /><?php bp_group_name(); ?> </li> <?php } ?> <?php $i++; ?> <?php endwhile; /* endif; */ ?> <?php else: ?> <p class="reg_groups_none">No selections are available at this time.</p> <?php endif; ?> it does the job Quote Link to comment https://forums.phpfreaks.com/topic/215208-checkbox-list-from-loop-how-to-set-a-default/#findComment-1119284 Share on other sites More sharing options...
BlueSkyIS Posted October 5, 2010 Share Posted October 5, 2010 oh wait that's not a tertiary operator. never mind. :-) Quote Link to comment https://forums.phpfreaks.com/topic/215208-checkbox-list-from-loop-how-to-set-a-default/#findComment-1119290 Share on other sites More sharing options...
jarvis Posted October 6, 2010 Author Share Posted October 6, 2010 So does this mean it's possible? Quote Link to comment https://forums.phpfreaks.com/topic/215208-checkbox-list-from-loop-how-to-set-a-default/#findComment-1119547 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.