Ise este codigo para un bbcode:
[ u r l =direcion_web]Mi web[/ u r l ]
(sin separar con espacios)
El codigo es:
Código PHP:
$mensaje = preg_replace("/\[url\](www\..+)\[\/url\]/i","<a href=\"http://\\1\" target=\"_blank\">\\1</a>",$mensaje) ;
$mensaje = preg_replace("/\[url\](.+)\[\/url\]/i","<a href=\"\\1\" target=\"_blank\">\\1</a>",$mensaje) ;
$mensaje = preg_replace("/\[url=(www\..+)\](.+)\[\/url\]/i","<a href=\"http://\\1\" target=\"_blank\">\\2</a>",$mensaje) ;
$mensaje = preg_replace("/\[url=(.+)\](.+)\[\/url\]/i","<a href=\"\\1\" target=\"_blank\">\\2</a>",$mensaje) ;
[ u r l =http://www.google.com.ar/]Google[ / u r l ]
pe lo deja haci:
http://www.google.com.ar/" target="_blank">Google
Gracias
Salu2