kevinritt Posted December 24, 2008 Share Posted December 24, 2008 I've set up a page where the client can edit text from a database using a form. After the form is submitted, the text is updated. I'd like to add BBCode to the textarea (similar to what I'm typing in now ) so the client can change colors, fonts, size, etc. How can I do this? Is there a tutorial out there? Link to comment https://forums.phpfreaks.com/topic/138280-bbcode/ Share on other sites More sharing options...
redarrow Posted December 24, 2008 Share Posted December 24, 2008 <?php $string = "<table><tr><td>I [i]am[/i] so [b]cool[/b]</td><td>[smile]</td> </td><tr></table>"; $bb_replace = array('[b]','[/b]','[i]','[/i]','[smile]'); $bb_replacements = array ('<b>','</b>','<i>','</i>','<img width="50px" height="30px" src="http://tbn2.google.com/images?q=tbn:kq6ay2cATrQg0M:http://www.teacherjoe.com/smiley2.gif">',' '); $string = str_replace($bb_replace,$bb_replacements,$string); echo $string; ?> Link to comment https://forums.phpfreaks.com/topic/138280-bbcode/#findComment-722982 Share on other sites More sharing options...
peranha Posted December 24, 2008 Share Posted December 24, 2008 search google for "bbcode scripts" Here is a tutorial from the second link. http://www.phpbuilder.com/board/showthread.php?t=10313499 Link to comment https://forums.phpfreaks.com/topic/138280-bbcode/#findComment-722983 Share on other sites More sharing options...
kevinritt Posted December 24, 2008 Author Share Posted December 24, 2008 redarrow, Would I just use that as an 'include' file? Thanks Link to comment https://forums.phpfreaks.com/topic/138280-bbcode/#findComment-722985 Share on other sites More sharing options...
redarrow Posted December 24, 2008 Share Posted December 24, 2008 can do if need to. Link to comment https://forums.phpfreaks.com/topic/138280-bbcode/#findComment-722986 Share on other sites More sharing options...
MasterACE14 Posted December 24, 2008 Share Posted December 24, 2008 you can make it into a function for easy use whenever you need it. Link to comment https://forums.phpfreaks.com/topic/138280-bbcode/#findComment-723003 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.