first of all i have this code
function Huemix_content_filter_qm($content){
$item = '\?';
$before='<span class="kindared">';
$after='</span>';
$content = preg_replace("|($item)|","$before$1$after",$content);
$content = preg_replace("|(<[^>]+?)($before($item)$after)([^<]+?>)|","$1$3$4",$content);
return $content;
}
add_filter('the_content', 'Huemix_content_filter_qm');
i can under stand the whole code but this three vars $1$3$4
can any one tell me what they are, cuz as i did i never define them !