Hi, I do know a bit PHP and also had no probles with regular expressions, until now. This is my code:
$string = ereg_replace("([\"](.*)[\"])", "<span class=\"style10\">\\2</span>", $sting);
. Why doesn't it work? It all runs fine when using:
$string = ereg_replace("([*](.*)[*])", "<span class=\"style10\">\\2</span>", $sting);
, but I want PHP to recognize quotes. Please help :-/.