Jump to content

rich text with php and mysql


mjh

Recommended Posts

Hi,

 

Could anyone recommend a good way to intergrate rich text (blog, forum like text, like this!) into a php/mysql web app I am building?

 

Does a TEXT field handle the formatting (bold, font size, colours)? and what about storing links?  Or must it be pharsed in and out each time you edit?

 

A brief overview of how to do this would be wonderful,

 

Many thanks

Matt

 

Link to comment
https://forums.phpfreaks.com/topic/53857-rich-text-with-php-and-mysql/
Share on other sites

The textfield is only used to insert the data, not to output. The output is usually in a simple div/span element that can handle any text formatting desired. Common forums use BB-type of code, such as

Here is some [b]bolded text[/b] for you.

 

And the application parses that into the relevant HTML elements, and out when/if it is edited, so that it is not breaking any HTML rules when it is in a textfield. I would suggest looking for regex functions that handle this process, for example:

http://www.tutorio.com/tutorial/simple-and-complex-bbcode-with-php

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.