Hi,
function make_clickable($text)
{
$ret = eregi_replace( "([[:alnum:]]+)://([[:space:]])([[:alnum:]#?/&=])", "<a href=\"\1://\2\3\" target=\"_blank\" target=\"_new\">\1://\2\3</a>", $text);
$ret = eregi_replace( "(([a-z0-9_]|\-|\.)+@([[:space:]])([[:alnum:]-]))", "<a href=\"mailto:\1\" target=\"_new\">\1</a>", $ret);
return($ret);
}
This function makes all links clickable in a string. Unfortunately i don't remember where i've got this. Anyway, i hope it helps.