Welcome Guest, Not a member yet? Register   Sign In
Get value from DB
#2

[eluser]shahnawazahmed[/eluser]
its my controller
<?php
class site extends CI_controller
{
function index()
{
$this->load->model('getdb');
$a=$this->getdb->getall();
echo $a;


}


}

?>


and here is the model

<?php
class getdb extends CI_Model{

public function getall()
{
echo $query= $this->db->query('SELECT user_role FROM res_user');



}



}

?>

i want to fetch value from the db column user_role ...


Messages In This Thread
Get value from DB - by El Forum - 09-11-2012, 05:36 AM
Get value from DB - by El Forum - 09-11-2012, 05:42 AM
Get value from DB - by El Forum - 09-11-2012, 05:52 AM



Theme © iAndrew 2016 - Forum software by © MyBB