Ver Mensaje Individual
  #7 (permalink)  
Antiguo 19/05/2005, 05:50
Avatar de Seppo
Seppo
 
Fecha de Ingreso: marzo-2005
Ubicación: Buenos Aires, Argentina
Mensajes: 1.284
Antigüedad: 19 años, 1 mes
Puntos: 17
Hay una función de PHP qye traduce los caracteres a HTML, que es lo que buscás: http://ar2.php.net/manual/es/function.htmlentities.php

En el ejemplo inicial sería
Código PHP:
<?php
$titulo
$_GET['titulo'];
?>
<html>
<head><title><?php echo htmlentities($titulo); ?>. Lo que sea.</title></head>