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

[eluser]cpeele[/eluser]
Hey guys, I am very new to codeIgniter and am trying to get my page to display some database results but no rows show.

1) I have data in my database

2) I have set autoloading

3) Here is my database configuration:

Code:
$db['default']['hostname'] = "localhost";
$db['default']['username'] = "root";
$db['default']['password'] = "";
$db['default']['database'] = "qno";
$db['default']['dbdriver'] = "mysql";
$db['default']['dbprefix'] = "";
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = "";
$db['default']['char_set'] = "utf8";
$db['default']['dbcollat'] = "utf8_general_ci";

4) Here is my Controller

Code:
<?php

class Questions extends Controller
{    
    function index()
    {
        $data['query'] = $this->db->get('questions');
        
        $this->load->view('questions', $data);
    }
}

?>

5) Here is my view

Code:
<?php if($query->num_row() > 0): ?>
this does not show :(
<?php endif; ?>

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

6) Here is my output when I do a print_r($data);

Code:
Array ( [query] => CI_DB_mysql_result Object ( [conn_id] => Resource id #28 [result_id] => Resource id #29 [result_array] => Array ( ) [result_object] => Array ( ) [current_row] => 0 [num_rows] => 2 [row_data] => ) )


Please if anyone can help me I would really appreciate it. I would like to start using CI over CakePHP but I can't even get this to dispaly database results.

Thanks for any help,

Chris


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