I am building a simple meta tag search engine for my website. But on some occassions I would like it to load multiple answers to a search statement I am pretty sure that I need to loop it not sure how to start. Here is what I have
$metatags=get_meta_tags("custom.php", "test.php");
echo "$metatags[url]";
echo "$metstags[Description]";
Any idea how to loop it
John