我在home.php
app/frontend/templates/home.php
如果我的用户未连接,我会包含此模板。我尝试包括2个部分:
<?php echo get_partial('sfGuardAuth/signin_form', array('form' => $form)) ?>
<?php echo get_partial('news/listNews', array('listNews' => $listNews)) ?>
但是当我想使用变量$form
和$listNews
时,我有错误:
Notice: Undefined variable: form
Notice: Undefined variable: listNews
为什么?
答案 0 :(得分:0)
使用组件解决问题