I am using this script to get the metatags out of a page:
$metatags = get_meta_tags("$url",1);
now this works:
echo $metatags[keywords];
echo $metatags[description];
but I also what the title tags and the function get_meta_tags doesn't support that, how do I go about getting the title tags?
thx