Hi!
How can I reach to get the first 100 chars of $????? to be shown in a table??
I already tried count chars () but couldn't get it done 🙁 may be I made some syntax errors...
THX
try to use substr()
$first100 = substr($yourvar, 0, 100);
thx for the hint!
it works perfect
and the better hint - get the copy of php manual and if you'll come in such troubles, just open Function Reference and find what you need.
regards, Dan