Welcome Guest, Not a member yet? Register   Sign In
database access using code igniter
#2

[eluser]MindFeed[/eluser]
Hey,

I don't see a constructor in your controller class "Helloworld.php", so if you write something like this, will work

<?php
class Helloworld extends Controller{

function Helloworld()
{
parent::Controller();
}

function index()
{
$this->load->model(‘Helloworld_model’);

$data[‘result’] = $this->Helloworld_model->getData();
$data[‘page_title’] = “CI Hello World App!”;

$this->load->view(‘helloworld_view’,$data);
}
}
?>


Thanks,
Bhargav Khatana


Messages In This Thread
database access using code igniter - by El Forum - 08-28-2009, 09:13 AM
database access using code igniter - by El Forum - 08-28-2009, 10:18 AM
database access using code igniter - by El Forum - 08-28-2009, 10:54 AM



Theme © iAndrew 2016 - Forum software by © MyBB