Hi,
I need to show only the the first 100 characters of a string. I dont know how to do this in PHP. What operators should be used?
My guess is to create something like this:
If string length<100 then
print '$string'
else
print ' this is the part i'm not sure about '
Any help?