Hi,
Here's my code:
...
$find = '<*href="*">*<\/a>';
$pos = preg_match($find, $content, $matches);
IF ($pos === FALSE){
echo "No links found containing $find";
exit;
}else{
print_r($matches);
}
...
It seems that I'm using the *s incorrectly. It should be matching hyperlinks.
All help appreciated thanks.