I am using a php based script to pull forum posts from vbulletin to my homepage. The script currently doesn't have a character limit for link titles. It just pulls the entire titles. I need someone to put some code in the script to set a character limit on link titles. Will pay. Please PM me. Thank you.
For others who might need to do this, here is one of many links showing some examples: http://www.the-art-of-web.com/php/truncate/
use substr(var,start,end) $info = "blah."; $cutinfo = substr($info, 0, 3); echo $cutinfo; The output would be: "bla"