Hi there forum world.
I have a site where I need help with coding.
All I need to know is how to make this code (below) so that one that says "Once a Week" is checked by default? Of course the user can go into the screen where this code is and change it what they like and it will stay to whatever they have selected, but the default needs to be set to Once a Week. Thanks in advance for your help.
<input type="radio" name="matches_email" value="daily" <?if($member->matches_email=='daily'){?>checked<?}?>> Daily
<input type="radio" name="matches_email" value="3_times_week" <?if($member->matches_email=='3_times_week'){?>checked<?}?>>3 times a week
<input type="radio" name="matches_email" value="once_week" <?if($member->matches_email=='once_week'){?>checked<?}?>>Once a week
<input type="radio" name="matches_email" value="no_mail" <?if($member->matches_email=='no_mail'){?>checked<?}?>> Do not send matches by email