这个很简单,但我今天转了这么多圈,完全迷路了!
我正在尝试根据我在页面顶部设置的变量来获取正确的页面标题和页面内容。IE:
<?php
$pageIDn = 2;
include($_SERVER['DOCUMENT_ROOT'] .'/includes/functions.php');
content($pageIDn); // the function that queries the DB
include($_SERVER['DOCUMENT_ROOT'] .'/includes/header.php'); ?>
在函数中,我有这个函数/查询:
function content($pageID){
$query = mysql_query("SELECT * FROM pages WHERE id = 1");
$title = $query['title'];
$content = $query['content'];
}
然后在文件中的相关位置,我试图回显变量,即:
<h2><?php echo $content; ?></h2>
我知道我在这里某个地方犯了一个非常愚蠢的错误……只是不确定在哪里。