我有这个代码:
$pages = $conn->prepare('SELECT * FROM pages WHERE slug = startpage');
$pages->execute();
$resultarray = array();
while($row = $pages->fetch(PDO::FETCH_ASSOC)){
$resultarray[] = $row;
}
我正在尝试这样做,因为我想在整个文档中使用该数组,而不仅仅是在一段时间内。请参见下面的示例:
//Somewhere outside of the while loop
<h1><?php echo $resultarray['header']?></h1>
最有效的方法是什么?