Welcome Guest, Not a member yet? Register   Sign In
Duplicating $data in multiple functions?
#1

[eluser]Unknown[/eluser]
Hi there,

I'm pretty new to CI but not to PHP and I'm ok with the concepts of OOP with PHP, but I feel like I'm missing something REALLY obvious here...

Code:
<?php
class Login extends Controller {

function Login()
{
  parent::Controller();

  $this->load->scaffolding('users');
  $this->load->helper('form');
  $this->load->model('Login_model', '', TRUE);
  
}

function index()
{
  $data['title'] = "News Administration";
  $data['heading'] = "User Login";
  
  $data['username'] = array(
     'name'  => 'username',
     'id'    => 'username',
     'value'    => '',
     'maxlength'   => '100',
     'size'  => '15',
  );
  $data['password'] = array(
     'password'  => 'password',
     'id'    => 'password',
     'value'    => '',
     'maxlength'   => '100',
     'size'  => '15',
  );

  $this->load->view('login_view', $data);
}

function auth()
{
  $data['title'] = "News Administration";
  $data['heading'] = "User Login";
  
  if($this->session->userdata('logged_in')) {
    $this->load->view('login_sucess_view', $data);
  } else {
    $this->load->view('login_fail_view', $data);
  }
}

}
?>

Why am I duplicating $data in each function to get the information to display in the view file? Surely there must be a way of declaring that variable once and then accessing it from each function??

I tried declaring it at the top of the class and then using
Code:
$this->data
but needless to say that didnt work...

Can someone shed some light on this and put me back on the right track?

Cheers,

d.


Messages In This Thread
Duplicating $data in multiple functions? - by El Forum - 07-25-2007, 03:51 AM
Duplicating $data in multiple functions? - by El Forum - 07-25-2007, 04:50 AM
Duplicating $data in multiple functions? - by El Forum - 07-25-2007, 05:13 AM
Duplicating $data in multiple functions? - by El Forum - 07-25-2007, 05:17 AM



Theme © iAndrew 2016 - Forum software by © MyBB