12/09/2006, 13:02
|
| | Fecha de Ingreso: agosto-2006
Mensajes: 121
Antigüedad: 18 años, 3 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 "..."; |