I am attempting to use MarkItUp and PHP Markdown Parser. But I am don't know how to invoke the parser in the preview.php file.
My preview.php is invoked and correct form data is sent by inspect the network call. But instead of parsed text only the content of the file is listed in the preview window.
Following is the content of my preview.php
<?php
include_once "markdown.php";
$html=Markdown($_POST['data']);
echo htmlentities($html);
?>
What's wrong with my preview.php?
Thanks!! I did miss the .. corrected in the code