Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/03/2007, 05:46
firulillo
 
Fecha de Ingreso: septiembre-2005
Mensajes: 11
Antigüedad: 18 años, 7 meses
Puntos: 0
Re: <title><?php include("página.php"); ?></title>

Sí, es perféctamente posible. Ese script funcionaria si el codigo de "página.php" (yo no le pondria acento ) fuera algo así:
Código PHP:
<?php
echo "TITULO DE MI WEB";
?>
Pero también podrias hacerlo así:
Código PHP:
<title>
<?php
   
echo $titulo;
?>
</title>