Welcome Guest, Not a member yet? Register   Sign In
if home page include
#1

[eluser]philk[/eluser]
n00b question, my first challenge with codeigniter

I want to test if the home page is loaded and include a little flash movie and the navigation tabs, otherwise just the navigation tabs, and i'm stumped as to the syntax, can anyone help?
#2

[eluser]Armchair Samurai[/eluser]
Unless you need something more complex and are only worried about the top page, take the path of least resistance: just include a flag in the variables you pass to your view, then check for the flag.
Code:
// In the controller
$this->load->vars(array(
    'top_page' => TRUE
));
$this->load->view('top_page');

// In the view
<?php if (isset($top_page) && $top_page === TRUE):?>
<!-- Top page only content here -->
<?php endif;?>
#3

[eluser]philk[/eluser]
thank you very much - that worked perfectly Smile




Theme © iAndrew 2016 - Forum software by © MyBB