Ver Mensaje Individual
  #9 (permalink)  
Antiguo 05/12/2002, 14:36
josemi
Ex Colaborador
 
Fecha de Ingreso: junio-2002
Mensajes: 9.091
Antigüedad: 21 años, 10 meses
Puntos: 16
Hola,

Prueba con la funcion htmlspecialchars() o htmlentities(). Seria algo asi:
Código PHP:
foreach ($HTTP_GET_VARS as $parametro => $valor)
{
if(!
in_array($parametro$nascosti))
{
if (
$valor!=''){
$mensajeC.="<tr><td><font face=arial size=2> $parametro</font></td><td><font face=arial size=2> ".htmlentities($valor)."</font></td></tr>";
}
}

Estas funciones transforman codigo HTML en texto. Es por si acaso algun valor contiene codigo HTML que descuadre la tabla.

Suerte.
__________________
Josemi

Aprendiz de mucho, maestro de poco.