Question

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"] ;
Was it helpful?

Solution

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

OTHER TIPS

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top