how do i use the bb code url [url[/url] and save that in an variable in php? In other words I want to store some bb code into a php variable, how to escape into it?
something like this
$myvariable = 'Please like us on Facebook [url=http://facebook/page]text[/url]'
I would look into this: http://nbbc.sourceforge.net/
Its the BBCode parser I use on my website 🙂
If not you could use regular expressions with preg_replace() but I would seriously suggest the above solution so you don’t have to worry about security.