Jump to content

Link bbCode ([URL]


Recommended Posts

I'm coding a php forum script mod, but I do not know how to do the URL bbCode.

 

I want to do two versions:

 

1) Example:

[url]http://example.com[/url]

 

The script should search for [url ] (space added to stop the board parsing it) and replace it with:

<a href="URL" target="_blank" title="External link">URL</a>

 

2) The script should look for all URLs (http://) and replace it with:

<a href="URL" target="_blank" title="External link">URL</a>

 

I'm thinking that preg_replace and regex would do, but I'm unsure as to how.

 

Can anyone advise?

Thanks in advance.

Link to comment
https://forums.phpfreaks.com/topic/200583-link-bbcode-url/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.