Code: Select all
<?php
switch($_GET['page']){
case "about":
include ("about.php");
break;
......etc.
Code: Select all
<?php
include ("includes/navigation.php");
?>Moderator: General Moderators
Code: Select all
<?php
switch($_GET['page']){
case "about":
include ("about.php");
break;
......etc.
Code: Select all
<?php
include ("includes/navigation.php");
?>Ehhh, the html generated for "anything" that hits your php page is the same... (normally)dru_nasty wrote:Right, but it's not html output until a browser hits the page.
So does a search engine read the include as html?