Display meta tags

This uses the get_meta_tags function to display the meta tags of a given page , if any exist that is

<?php
$searchmeta = get_meta_tags("index.htm");
echo ($searchmeta["description"]);
echo ("<br>");
echo ($searchmeta["keywords"]);
?>