Gruzin Posted July 27, 2006 Share Posted July 27, 2006 hi guys,I'am trying to write a simple bbcode, but I don't know how to insert link or hyperlink.....Hope someone can help me with that. URL is not working, it must be replaced, here is my code:[code=php:0]<?php $bbcode_string = "[bold]Bold Text[/bold] [italic]Italicized Text[/italic] [underline]Underlined Text[/underline] [URL=http://Link]Link[/URL]"; // $bbcode string $bbcode=array( "[bold]" => "<b>", "[/bold]" => "</b>", "[italic]" => "<i>", "[/italic]" => "</i>", "[underline]" => "<u>", "[/underline]" => "</u>", "[URL=http://" => "<a>", "]" => "<a>", "[/URL]" => "</a>", );$bbcode_string = str_replace(array_keys($bbcode), array_values($bbcode), $bbcode_string);?>[/code] Quote Link to comment https://forums.phpfreaks.com/topic/15786-a-little-help-needed-with-bbcode/ Share on other sites More sharing options...
sanfly Posted July 27, 2006 Share Posted July 27, 2006 You need to use regular expressionsHere is a general tutorial on regex: [url=http://weblogtoolscollection.com/regex/regex.php]http://weblogtoolscollection.com/regex/regex.php[/url]These phpfreaks tutorials looks at using regex for bb code[url=http://www.phpfreaks.com/tutorials/107/0.php]http://www.phpfreaks.com/tutorials/107/0.php[/url][url=http://www.phpfreaks.com/tutorials/123/0.php]http://www.phpfreaks.com/tutorials/123/0.php[/url] Quote Link to comment https://forums.phpfreaks.com/topic/15786-a-little-help-needed-with-bbcode/#findComment-64550 Share on other sites More sharing options...
wildteen88 Posted July 27, 2006 Share Posted July 27, 2006 Yes, you'll be better of with regualar expressions, they are alot more powerful than str_replace, but they are little bit more complicated when you start. Have a look at [url=http://www.phpfreaks.com/forums/index.php/topic,101566.msg402102.html#msg402102]this post[/url] of a simple BBCode parser with regualar expressions. Quote Link to comment https://forums.phpfreaks.com/topic/15786-a-little-help-needed-with-bbcode/#findComment-64569 Share on other sites More sharing options...
Gruzin Posted July 27, 2006 Author Share Posted July 27, 2006 ok, thanks guys:) Quote Link to comment https://forums.phpfreaks.com/topic/15786-a-little-help-needed-with-bbcode/#findComment-64589 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.