我正在使用cakephp 1.3,我想让我的幻灯片只在我的主页上显示。 我正在使用以下代码:
<?php
if($page == 'home'){
?>
//The content of slider here
<?php
}else{
?>
the message that the slider is only avaliable on homepage... or blank
<?php
}
?>
在“家”中它工作正常,但当我去其他控制器页面,如我的“女孩”控制器时,它会显示以下信息:
Undefined variable: page [APP\views\elements\header_layout.ctp, line 38]
有人可以帮忙吗?
答案 0 :(得分:1)
将您的初始if()更改为
if (isset($page) && ($page == 'home')) {
...
}
那将删除警告。