Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.