I suppose that implode() / explode() functions are OK in this case and you may use something like this:
"UPDATE table_name SET search_fruit = '".implode('|', $fruit)."' WHERE user_id = ".$user_id;
When the data retrieved you will just need to do
$fruit = explode('|', $mysql_data['search_fruit'];