我有一个带有 textarea 控件的表单,主要用于输入由纯文本组成的文章...在 textarea 控件中,我有类似的文本
我提交表单并将 textarea 数据保存到数据库字段中。到现在为止还挺好..
在浏览器中,我试图输出数据库字段,但我没有得到 php 包含文件的内容,而是得到如下内容:
php标签被注释了!!!
为什么浏览器不显示/解析包含文件的内容?
更新:这是 test.php 的内容
<?php
echo test;
?>
这是article.php的代码
<?php
require_once('../includes/global.inc.php');
require_once('../includes/connection.inc.php');
if (isset($_GET['article']) && is_numeric($_GET['article'])) {
$get_article = (int)$_GET['article'];
$conn = connect('read');
$sql = 'SELECT article.article_id, article.title, article.description, article.article, article.seo_url
FROM article
WHERE article.article_id = ?';
$stmt = $conn->stmt_init();
$stmt->prepare($sql);
$stmt->bind_param('i', $get_article);
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($articleid, $title, $description, $article, $seourl);
$stmt->fetch();
$stmt->free_result();
$stmt->close();
}
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
...
</head>
<body>
<?php
echo $title;
echo $article;
?>
</body>
</html>