i'm using cakephp 1.3 and I want to make my slide of pictures to be displayed only in my home page. i'm useing the following code:

<?php
    if($page == 'home'){
?>
   //The content of slider here
<?php 
}else{
?>
 the message that the slider is only avaliable on homepage... or blank
<?php
 }
?>

In the "home" it works fine, but when i go the other controller page such as my "girls" controller it displays this message:

Undefined variable: page [APP\views\elements\header_layout.ctp, line 38]

can somebody help here?

link|improve this question
feedback

1 Answer

Change your initial if() to

if (isset($page) && ($page == 'home')) {
    ...
}

That'll remove the warning.

link|improve this answer
1  
Thankyou man... it work fine... i just forgot this simple solution... – Lucas Pacheco Feb 20 '11 at 20:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.