Hello,
I am learning codeigniter
So I have 3 radio button. My code as under
View Page
<li id="AgencyType" style="z-index: 93;">
<label class="mandatory" for="ExternalAgency">Are you an employment agency?</label>
<ul>
<li style="z-index: 92;">
<?php
$data = array(
'id'=>'ExternalAgency',
'name'=>'ExternalAgency',
);
echo form_radio($data);?>
<label for="ExternalAgency">No, we recruit directly.</label>
</li>
<li style="z-index: 91;">
<?php
$data = array('id'=>'HeadhuntingAgency',
'name'=>'ExternalAgency');
echo form_radio($data); ?>
<label for="HeadhuntingAgency">Yes, we are a headhunting/recruitment agency.</label>
</li>
<li style="z-index: 90;">
<?php $data = array('id'=>'TemporaryAgency',
'name'=>'ExternalAgency');
echo form_radio($data); ?>
<label for="TemporaryAgency">Yes, we are a temporary staffing agency.</label>
</li>
<?php echo form_error('ExternalAgency','<span style="color:red;float:none;">','</span>'); ?>
</ul>
Visula Output
Problem:
If No One can selected then given me Error message.
Given me suggestion
Thank you