Welcome Guest, Not a member yet? Register   Sign In
How can I insert a flash intro in my CI website?
#4

[eluser]Iván Argulo[/eluser]
You could have 2 controllers, one to load the flash intro and other one to load the home page. Just redirect to your second controller when the flash is clicked.

Or, with just one controller

Code:
<?php
class page extends Controller {

    function index()
    {
        // Load the view here with the flash intro
        $this->load->view('flash_intro');
    }

    function home()
    {
        // Load here your home page
        $this->load->view('home_page_no_flash');
    }
}
?>

The first URL will be http://yourweb.com/page, and the second page will be http://yourweb.com/page/home


Messages In This Thread
How can I insert a flash intro in my CI website? - by El Forum - 07-14-2009, 09:34 AM
How can I insert a flash intro in my CI website? - by El Forum - 07-14-2009, 10:26 AM
How can I insert a flash intro in my CI website? - by El Forum - 07-14-2009, 10:35 AM
How can I insert a flash intro in my CI website? - by El Forum - 07-14-2009, 11:44 AM
How can I insert a flash intro in my CI website? - by El Forum - 07-14-2009, 12:20 PM
How can I insert a flash intro in my CI website? - by El Forum - 07-14-2009, 12:25 PM
How can I insert a flash intro in my CI website? - by El Forum - 04-26-2010, 09:21 AM
How can I insert a flash intro in my CI website? - by El Forum - 04-26-2010, 05:13 PM
How can I insert a flash intro in my CI website? - by El Forum - 04-26-2010, 07:21 PM
How can I insert a flash intro in my CI website? - by El Forum - 04-26-2010, 07:35 PM



Theme © iAndrew 2016 - Forum software by © MyBB