PHP:
$match_expression = '<br><span class\=a>(.*)\/<\/span><\/font>';
preg_match($match_expression,$total,$matches);
return strip_tags($matches[1]);
Is giving me an error. Why? I did not think you had to escape < and > operators.Warning: preg_match() [function.preg-match]: Unknown modifier '<' in /home/website/public_html/directory/myscript.php on line 21
-
Last edited:






