It´s a very simple problem but I simply can´t find the solution!
I got a text from a database (VARCHAR).
I need to display the 100 (for example) first letters.
How do I do it ?
$string = substr($string,0,99);
Many thanks cahva!
it really works