<?
// Sets up meta data array
$metaInfoArr = array(
"index.php" => array(
"meta_title" => "My Home Page",
"meta_description" => "This is my home page.",
"meta_keywords" => "home, page, house, casa"
),
"about.php" => array(
"meta_title" => "About Us",
"meta_description" => "This has info about us.",
"meta_keywords" => "about, quien es"
)
);
// Gets the current file name
$thisScriptArr = explode('/', $_SERVER["SCRIPT_NAME"]);
$thisFile = $break[count($thisScriptArr) - 1];
?>
<html>
<head>
<title><?=$metaInfoArr[$thisFile]["meta_title"];?></title>
<meta name="description" content="<?=$metaInfoArr[$thisFile]["meta_description"];?>">
<meta name="description" content="<?=$metaInfoArr[$thisFile]["meta_keywords"];?>">
</head>
<body>
</body>
</html>