how to save data in database from wmd editor

1.1k views Asked by At

I am saving the content from the textarea its just saving this as plane text in database not like shown in preview how to store data shown in preview

//in form;
<textarea id="wmd-input" class="wmd-panel" name="content" ></textarea>

//in database
$content =  $_POST["content"] ;
2

There are 2 answers

0
NullPoiиteя On BEST ANSWER

you can do this by markdown.php you need to download and include the markdown.php and

you just need to do

$my_html=  Markdown($content);

and now store the $my_html to database now it will work

3
manurajhada On

Please look at this..

Inserting text from textarea into MySQL database without losing formatting

Its the same issue like you have.

Kindly try this if fulfill your need..

$content = nl2br($_POST["content"]);

Use this before you save in DB if you want to display the content in HTML so that all new line character will be converted into <br/>. And Save as it is (without nl2br) if you want it to display again in textarea.