function keyword($field, $value) { if($value == '') return ''; $v = ''; $tags = explode(' ', $value); foreach($tags as $tag) { $v .= ''.$tag.''; } return $v; }