문제

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"] ;
도움이 되었습니까?

해결책

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

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top