[Php-it] problemino titolo pagina quando su header.inc.php
Tassoman (mailing)
ml at tassoman.com
Mon May 15 10:29:15 CEST 2006
Luca Benni ha scritto in data 15/05/2006 10:11 :
>
> un problema che mi si pone da sempre:
>
> thanks
>
> Luca
Prova con:
index.php
<?php
include('vars.php');
include('head.php');
?>
vars.php
<?php
define('TITOLO', 'Nome del sito');
$titolo = TITOLO. " » " . $_SERVER['SERVER_NAME'];
?>
head.php
<html>
<head>
<title><?php echo $titolo; ?></title>
</head>
</html>
More information about the Php-it
mailing list