Welcome Guest, Not a member yet? Register   Sign In
Database results will not display. New to CI
#7

[eluser]Dam1an[/eluser]
you now alppear to be calling ->result() on the query in the controller, and you try calling it on what is now the result (although called query in the view

try
Code:
<?php

class Questions extends Controller
{    
    function index()
    {

        $query = $this->db->get('questions');
        $data['questions'] = $query->result();
    }
}

?>

// view
<ul>
&lt;?php foreach($questions as $question): ?&gt;
    <li>&lt;?=$question->name?&gt;</li>
&lt;?php endforeach; ?&gt;
</ul>


Messages In This Thread
Database results will not display. New to CI - by El Forum - 04-25-2009, 10:00 AM
Database results will not display. New to CI - by El Forum - 04-25-2009, 10:29 AM
Database results will not display. New to CI - by El Forum - 04-25-2009, 11:19 AM
Database results will not display. New to CI - by El Forum - 04-25-2009, 12:37 PM
Database results will not display. New to CI - by El Forum - 04-25-2009, 12:43 PM
Database results will not display. New to CI - by El Forum - 04-25-2009, 06:10 PM
Database results will not display. New to CI - by El Forum - 04-26-2009, 04:46 AM
Database results will not display. New to CI - by El Forum - 04-26-2009, 12:34 PM
Database results will not display. New to CI - by El Forum - 04-26-2009, 12:36 PM
Database results will not display. New to CI - by El Forum - 04-26-2009, 12:37 PM
Database results will not display. New to CI - by El Forum - 04-26-2009, 12:47 PM
Database results will not display. New to CI - by El Forum - 04-27-2009, 12:39 PM
Database results will not display. New to CI - by El Forum - 04-27-2009, 01:17 PM
Database results will not display. New to CI - by El Forum - 04-27-2009, 03:10 PM
Database results will not display. New to CI - by El Forum - 04-27-2009, 10:42 PM



Theme © iAndrew 2016 - Forum software by © MyBB