07-11-2017, 02:37 PM
i presume you want to be able to have a select option as selected ? try something like this:
<pre></pre>
hope that helps
<pre>
Code:
<select id="recaptcha" class="form-control" name="recaptcha">
<option value="1" <?php if($settings->recaptcha==1) echo 'selected="selected"'; ?> >Yes</option>
<option value="0" <?php if($settings->recaptcha==0) echo 'selected="selected"'; ?> >No</option>
</select>
hope that helps