Hi there, Again stuck with preg_replace. I am trying to remove/cut/skip the first time (asdf), appears. Need this for a mysql query $content = preg_replace('#\(*\),#', '', $content, 1); Code (markup): regards
Hi, another suggestion: $content = preg_replace('#\([^\)]*\),#','',$content,1); PHP: pp: Maybe you should better use REGEXP in your query. Regards.