Espero que con este ejemplo que es el que yo uitlizo te sea mas claro
Código PHP:
<?php
//DATOS DEL PROGRAMA==================================
$CLIENTE= "Nombre del cliente - " ;
$SISTEMA = "Nombre del sistema -" ;
$VERSION = "La Version " ;
$NICK = "Nombre de quien realizo el script" ;
//========================================================
?>
<html>
<head>
<title>
<?php echo "$CLIENTE $SISTEMA $VERSION $NICK"; ?>
</title>
</head>
<body>
</html>