使用 Markdown 解析器的 PHP 代码

发布于 2024-11-30 08:17:46 字数 478 浏览 1 评论 0原文

我正在尝试使用 MarkItUp 和 PHP Markdown 解析器。但我不知道如何调用preview.php 文件中的解析器。

我的 Preview.php 被调用,并通过检查网络调用发送正确的表单数据。但预览窗口中只列出文件的内容,而不是解析的文本。

以下是我的preview.php的内容,

include_once "markdown.php";
$html=Markdown($_POST['data']);
echo htmlentities($html);

markdown.php与preview.php放在同一级别。 我还验证了我的 Apache 确实支持 php。 http://localhost/test.php 正确呈现,其中 test.php 只是

我的preview.php 有什么问题吗?

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

include_once "markdown.php";
$html=Markdown($_POST['data']);
echo htmlentities($html);

markdown.php is placed at the same level as preview.php.
Also I verified that my Apache does support php. http://localhost/test.php renders properly where test.php is simply <?php phpinfo(); ?>

What's wrong with my preview.php?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一片旧的回忆 2024-12-07 08:17:46

如果这完全是preview.php的内容,那么您在开头就缺少

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

多孤肩上扛 2024-12-07 08:17:46

您可能只是在 PHP 代码之前缺少一个开头 ...‽

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文