PDA

View Full Version : Is there way to include php file only on index page?


90210
05-03-2006, 08:50 PM
I would like to have php file only included on index page so it does not cary over to categories and link pages . Is there a way to do it?

Simon Gooffin
05-05-2006, 10:51 AM
Welcome to our support forums.
You should use the following code in your index.php:
if (!$category['id'])
{
your code
}

Greg
05-05-2006, 12:29 PM
Is that better then:
{if $category.id == 0}
(code here)
{/if}

or doesn't make a difference?

Simon Gooffin
05-05-2006, 01:26 PM
no difference I think, in our case ;)

Greg
05-05-2006, 01:35 PM
okie dookie :)

Simon Gooffin
05-06-2006, 10:32 AM
ok ;)

90210
05-12-2006, 09:26 PM
thanks guys. working perfect :applause: