我现在对下面的 cakePHP 代码有些头疼:
这是我的控制器:
<?php
class HeaderController extends AppController {
public $helpers = array('Html', 'Form');
public function index() {
}
public function usp() {
return $this->set('usp', $this->Header->query('SELECT * FROM USP WHERE Actief = 1'));
}
}
这是我的元素:
<?
$UNSP = $this->requestAction('header/usp');
print_r($UNSP);
foreach($UNSP['header'] as $USPs):
echo $USPs['USP']['Naam'];
endforeach;
查询工作并在页面加载时执行。我收到一条错误消息,提示为 foreach() [APP/View/Elements/header.ctp,第 9 行提供的参数无效]
有人可以帮我吗?