Ver Mensaje Individual
  #4 (permalink)  
Antiguo 16/02/2008, 10:37
Avatar de K-Yezaad
K-Yezaad
 
Fecha de Ingreso: octubre-2005
Mensajes: 140
Antigüedad: 18 años, 6 meses
Puntos: 3
Re: Alineacion Vertical de Texto

Es un poco offtopic, pero este codigo te puede ayudar a formatear cualquier texto con spans, como dice tfe, automaticamente

Código:
function texto_vertical($txt){
	for($c = 0; $c < strlen($txt); $c++){
		$vert .= "<span>".$txt[$c]."<span>";
	}
	return $vert;
}
Solo llamalo como echo texto_vertical("TEXTO");