简体   繁体   中英

how to save data in database from wmd editor

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"] ;

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 .

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM