Now, let me tell my problem. Actually, I have a website for creating which I firstly created an index page(with header, navigation bar and footer). Then, I put individual pages as separate PHPs. So, what basically I've done is put a link like "?bas=feedback" which trigers a function on the index page("index.php") for the following task:
Code: Select all
$basket = $_GET ['bas']
function samlagna ($basket) {
switch ($basket) {
case 'home':
include ('home.php');
break;
case 'feedback':
include ('feedback.php');
break;
}
}
But, here comes my problem.
When Google has indexed my site, multiple pages have been indexed (not just index.php) and one of the index is just,
"www.globalcollegiate.edu.np/general.php"
And so, if someone opens that page from google, then the page will display that boring feedback form without any header, navigation bar and footer. This is my problem.
Hoping to receive any sort of help!