I know you are right . Strings must be included in " " but ... why does this WORK ? ( Actually it isnt in the start of the page , but in the middle if that helps.. ) . What you told me to do , didnt work , you can try it too . Thanks for your responses.
//Include in.php & pages
if ($p == contact) {
// $site_title = "deepcore.gr || Contact us"
$page = "contact.php";
}
elseif ($p == main) {
// $site_title = "deepcore.gr || Main Page"
$page = "in.php";
}
elseif ($p == NULL) {
// $site_title = "deepcore.gr || Main Page"
$page = "in.php";
}
else {
// $site_title = "deepcore.gr || Error Page"
print "No such page found.Contact admin at mer@websystem.gr";
}
include("$page");
?>