Welcome Guest, Not a member yet? Register   Sign In
[Solved] View fails to load:
#3

[eluser]mdumont[/eluser]
Sorry... :-(

Here is the controller that I'm using (this is set as the default as well):
Code:
<?php

class Home extends Controller {

    function Home()
    {
        parent::Controller();
        $this->load->helper('book');
    }

    function index()
    {
        $data['admin'] = ldap_book_auth($_SERVER['WEBAUTH_USER']);
        $this->load->view('home_view',$data);
        return;
    }
}

?>

and the view:
Code:
<html>
    <head>
        <link rel="stylesheet" href='<?=base_url();?>css/style.css' type="text/css">
        <title>CSH Book Database</title>
    </head>
    <body>
        <div id="header">
            <div class="title">
                books.csh
            </div>
            <div class="navbar">
                <div class="navitem"><a href="&lt;?=base_url();?&gt;home">HOME</a></div>
                <div class="navitem"><a href="&lt;?=base_url();?&gt;request">REQUEST</a></div>
                <div class="navitem"><a href="&lt;?=base_url();?&gt;library">LIBRARY</a></div>

                &lt;?php if($admin):?&gt;
                    <div class="navitem"><a href="&lt;?=base_url();?&gt;admin">ADMIN</a></div>
                &lt;?php endif; ?&gt;

            </div>
            <div class="status">
                <div class="status_item">Logged in as: mdumont</div>
                <div class="status_item">Reviews Due:</div>
                <div class="status_item">Books In Queue:</div>
            </div>
        </div>
        <div id="layout">
            <div id="left" class="column">
            </div>



        </div>

    &lt;/body&gt;
&lt;/html&gt;


Messages In This Thread
[Solved] View fails to load: - by El Forum - 03-04-2010, 03:34 AM
[Solved] View fails to load: - by El Forum - 03-04-2010, 03:43 AM
[Solved] View fails to load: - by El Forum - 03-04-2010, 03:47 AM
[Solved] View fails to load: - by El Forum - 03-04-2010, 03:52 AM
[Solved] View fails to load: - by El Forum - 03-04-2010, 03:53 AM
[Solved] View fails to load: - by El Forum - 03-04-2010, 04:09 AM
[Solved] View fails to load: - by El Forum - 03-04-2010, 04:13 AM
[Solved] View fails to load: - by El Forum - 03-04-2010, 04:17 AM
[Solved] View fails to load: - by El Forum - 03-04-2010, 04:23 AM
[Solved] View fails to load: - by El Forum - 03-04-2010, 04:29 AM
[Solved] View fails to load: - by El Forum - 03-04-2010, 04:35 AM
[Solved] View fails to load: - by El Forum - 03-04-2010, 04:48 AM
[Solved] View fails to load: - by El Forum - 03-04-2010, 04:52 AM



Theme © iAndrew 2016 - Forum software by © MyBB