Il mio sito inizia così :
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<?php

blablabla

$mode = "Home";
if (isset($_GET['room']))
	$mode = $_GET['room'];
?>
<head>

<?php
		$thistitle = "";
		if (isset($lang[$mode]['title'])){
			$thistitle = lget('title') . " - ";
		echo "<title>" . $thistitle . "Free IndieGames" . ($user_notifications ? " ($user_notifications)" : "") . "</title>";}
?>
blablabla
</head>
ma per qualche motivo il title non si vede... o meglio compare vuoto.
Visualizzando la sorgente della pagina compare solo <title></title>
Come mai ?
Dove e come dovrei correggere ?