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

link|improve this question

60% accept rate
Does any other PHP code work on the server? – deceze Aug 17 '11 at 4:09
feedback

2 Answers

up vote 1 down vote accepted

If that's exactly the content of preview.php, you're missing a <?php at the beginning.

link|improve this answer
feedback

You're probably just missing an opening <?php before your PHP code...‽

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.