Php Programming Code Examples
Php > Code Snippets Code Examples
This uses the get_meta_tags function to display the meta tags of a given
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"]);
?>