Welcome Guest, Not a member yet? Register   Sign In
load Session in same file controller failed
#2

[eluser]TWP Marketing[/eluser]
In your controller function:
Quote:function ViewUpdate($data)
{
$this->session->set_userdata('nota2', $this->nota);

$this->data['h2_title'] = 'NotaDinas > Update Data';
$this->data['tampilan'] = 'NotaDinasUpdate';
$this->data['link'] = array('link_back' => anchor('NotaDinasUpdate/','kembali', array('class' => 'back'))
);
...

The value of $data, passed as the function parameter, may be referenced directly:
Code:
function ViewUpdate($data)
{
         $this->session->set_userdata('nota2', $this->nota);
  
  $data['h2_title']   = 'NotaDinas > Update Data';
  $data['tampilan']   = 'NotaDinasUpdate';
  $data['link']    = array('link_back' => anchor('NotaDinasUpdate/','kembali', array('class' => 'back'))
...


Messages In This Thread
load Session in same file controller failed - by El Forum - 08-23-2012, 12:26 PM
load Session in same file controller failed - by El Forum - 08-23-2012, 12:51 PM
load Session in same file controller failed - by El Forum - 08-23-2012, 01:17 PM
load Session in same file controller failed - by El Forum - 08-23-2012, 01:35 PM
load Session in same file controller failed - by El Forum - 08-23-2012, 01:41 PM
load Session in same file controller failed - by El Forum - 08-23-2012, 01:43 PM
load Session in same file controller failed - by El Forum - 08-23-2012, 01:50 PM
load Session in same file controller failed - by El Forum - 08-23-2012, 02:21 PM
load Session in same file controller failed - by El Forum - 08-23-2012, 05:40 PM



Theme © iAndrew 2016 - Forum software by © MyBB