//change img to img tags - autoimage
$text = preg_replace("#(^|^\][\r\n ])([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*)(.jpg|.jpeg|.png|.gif)#si", "\\1
", $text);
$text = preg_replace("#(^|^\][\r\n ])((www|ftp)\.[\w\#$%&~/.\-;:=,?@\[\]+]*)(.jpg|.jpeg|.png|.gif)#si", "\\1
", $text);
$text = preg_replace("#(^|^\][\r\n ])([\w\#$%&~/.\-;:=,?@\[\]+]*)(.jpg|.jpeg|.png|.gif)#si", "\\1
", $text);
//change img to img tags - autoimage
//change url text to clickable links - autolink[.jpeg|.jpg|.png|.gif]
$text = preg_replace("#(^|[\r\n ])([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*)#si", "\\1\\2", $text);
$text = preg_replace("#(^|[\r\n ])((www|ftp)\.[\w\#$%&~/.\-;:=,?@\[\]+]*)#si", "\\1\\2", $text);
$text = preg_replace("#(^|[\r\n ])([a-z0-9&\-_.]+?)@([\w\-]+\.([\w\-\.]+\.)*[\w]+)#i", "\\1\\2@\\3", $text);
//change url text to clickable links - autolink