I noticed a lot of sites allow user submitted content but prevent autolinking of urls. Some of the most common instances of this are on Twitter sites (much like my own creation: SecretTweet.com). So I threw together a function to autolink urls: Would return "Hey go to google.com moo http://google.com moo www.google.com moo http://wwww.google.com/404.php moo". And since I made this primarily for Twitter, the following will linke @ replies automatically, too: |\{|\(]?)@{1}(\w*)([\.|\,|\:|\!|\?|\>|\}|\)]?)\s/i', "$1@$2$3 ", $tweet);return $tweet; } echo twitterify(&$tweet); ?> Would return "Hey @mozunk! Go check out http://digsby.com -- I think you will like it." I'll be implementing this into SecretTweet pretty soon. I haven't decided if I want to autolink URLs or not...maybe just @replies. --- automatically link urls php autolink @ replies Twitter automatically link php