my web page is shaped by modules and I only have one cache, that is to say
<html>
<head>
<title>ejemplo</title>
<meta name="description" content="ejemplo" />
</head>
<body>
<header>
link1 link2 link3
</header>
<?php
if(isset($_GET["view"])){
include"modules/".$_GET["view"].".php";
}else{
include"modules/home.php";
}
?>
the other content after the body I bring from other files with the super Global GET according to the link clicked, my question is how can I change the title and the description of the meta tag as brought with the variable $_GET["view"]
.
this I need to improve the positioning of my page in google and that users find my page according to what they are looking for, some help plis? thanks