Try escaping the "+" character in your split statements. I didn't realize it, but apparently the split function accepts regex statements, which means that the "+" is a special character that needs to be escaped. Therefore, your split statements should look like:
PHP Code:
split('\+', $keyworda)