function tags ($data) {
   $tag = explode(',', $data); 
   $c = count($tag);
   for ($i=0; $i<=$c; $i++):
      if(isset($tag[$i])):
         $showtag.= '<a href="search.php?tag='.$tag[$i].'"># '.$tag[$i].'</a>'; 
		 
      endif;
   endfor;
   return $showtag;
}

echo tags("abc,cbd");