I need a bit of help.
I have this in my view
$salutation = array( 'Mr.' => 'Mr.', 'Mrs.' => 'Mrs.', 'Dr.' => 'Dr.', ); echo form_open('membership/update'); echo form_dropdown('Salutation', $salutation, 'Mrs.');
The dropdown works in all but one fashion, it does not pre-select 'Mrs.'. How can I get that to work properly. According to Codeigniter userguide, it seems I have the proper syntax.
Please help