Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/09/2006, 13:02
GikaJavi
 
Fecha de Ingreso: agosto-2006
Mensajes: 121
Antigüedad: 17 años, 9 meses
Puntos: 0
Con un if. Suponiendo que el texto del registro a mostrar esta en $txt, podrías hacer esto:

echo substr($txt, 0, $MAX_LONG);
if (strlen($txt) > $MAX_LONG) echo "...";