How can you use substr_count to count each element in an array's occurance in another array?
i.e. $urls = array (
'www.thesun.co.uk',
'www.bbcnews.co.uk',
);
$names = array (
'rex kum',
'tony blair',
);
so if i wanted to use substr_count to count the occurance of the name rex kumi on the sun webpage, how would this work?