So I'm using the form helper to set up a multiselect like so:
$certifiedTeacher = "I'm storing a value";
echo form_multiselect('certifiedTeacer', $certifiedTeacher, set_value('certifiedTeacher', $certifiedTeacher), 'id="certifiedTeacher" class="multiselect"');
After form post the correct value, in this example "I'm storing a value", is saved in the database. When I reload the page there are no values selected in the field.
If I select a field without a single quote everything works as expected and upno return that value is preselected.