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
Share on other sites

tinymce is a good one javascript based  or fckeditor.

 

www.google.com  will help you on your way.

 

If you want to build your own, good luck man that is some tough stuff I would recommend using a pre-built one.

Link to comment
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

Link to comment
Share on other sites

Thanks,  tinymce looks great.

 

Out of interest, what about for storing the data?  Would a MySQL TEXT field type be able to store rich text?  Are there any example of this avaiable anywhere?

 

Matt

Link to comment
Share on other sites

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.