|
|||
From: http://www.tutorio.com/tutorial/simp...bcode-with-php
Part 1: Simple bb code This techinque for simple bb code can be used to easily replace tags with no attributes like the bold and italic tags. PHP Code:
The same technique may also be used for things such as creating a swear filters, smilies and emoticons etc.. Part 2: Complex BB code The previous technique for creating bb code works well for things like bold and italic tags, but its not good for creating more complex things like bb code for hyperlinks or image tags. PHP Code:
Regex is a very powerful (and somewhat confusing) set of rules to create patterns for string manipulation, if you are into programming you are probably familiar with it already. The BBcode replacement pattern used for the url tags in this tutorial can be broken down into 5 parts, each part is enclosed within a round bracket. The preg function will find and replace either the exact text in each of these round brackets or match the text to the rules in these brackets. (\[url=) This part matches '[url=' in the BBcode. the reason There is a backslash in front of the square brackets is that square brackets a special charecter in regex. Note that parts 3 and 5 work in the same kind of way. (.+) This part would tell regex what characters to match, the dot matches almost every character and the + sign will means the number of characters has to be greater than zero, its used in parts 2 and 4. The reason it is used here is because we don't know the URL or the name of the page that the user is going to link to, . <a href="\\2">\\4</a> Here parts 2 and 4 (url and title) are extracted and put inside an HTML hyperlink which replaces the BBcode. BBcode is very popular in PHP scripts such as forums guestbooks and shoutboxes that wish to allow some user styling while limiting the potential for abuse that comes with giving users full access to HTML Last edited by infeeneetee; 01-12-2004 at 10:45 PM. |
![]() |
«
Previous Thread
|
Next Thread
»
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| display data,camne??? | adib | Website Programming | 14 | 21-08-2004 10:27 AM |
| camne nak masuk DB?? | adib | Website Programming | 2 | 11-06-2004 06:55 PM |
| VB 6.0: Camne nak save checkbox value | PrincessLea | Webmaster Tools | 3 | 08-06-2004 04:00 PM |
| camne nak bagi div nie tinggi 100%? | b3njo | Website Design | 1 | 01-10-2003 11:14 PM |
| camne nak publish web gune php | silverX | Website Programming | 7 | 20-11-2002 12:06 PM |
All times are GMT +8. The time now is 09:31 AM.
Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0 vBulletin skin by ForumMonkeys.com.
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0 vBulletin skin by ForumMonkeys.com.











Linear Mode

