Creating a Rich Text Field in Database

Hello,

I’m quite a beginner in using databases. I want to create a project page on my website.
Each project will be a row in my project database table.
Everything fine so far, but how can I implement rich text ? I want some description field with bold, headers etc.
Is there a way to format that and save it in a db field ? Or there is an other trick to do it ?

By the way I was reading the topic about headless cms (strapi/directus), is this something I should look into ?

Thanks,

Matthias

Just convert your text areas in your input for to summernote text areas. I’m on my phone right now so can’t provide screenshots but there is documentation in the docs.

Please check:

Thanks for your replies.
I tried to do like to doc but I can’t get to bind the summernote value to my serverconnect action.
My summernote name is “description”

In the get values of the SC I have a text for description

But when I ouput the value of description it’s always “null”
Capture d’écran 2020-07-06 à 18.28.52 Capture d’écran 2020-07-06 à 18.29.36

Is there something I’m missing ?

Thanks

The POST variable should be called the same as your input: inp_description

Okay,

I made the changes but still no value returned: