Welcome Guest, Not a member yet? Register   Sign In
how to output MySQL query results?
#2

[eluser]mironcho[/eluser]
In the DB class already exists result_array() method, so you can do:
Code:
$ret = array();

$query = $this->db->query("SELECT example FROM slang WHERE `slang` =' $slang_input' ");
if ($query->num_rows() > 0)
{
    // use result() for array of objects
    // $ret = $query->result();

    // use result_array() for array of arrays
    $ret = $query->result_array();
}

return $ret;

and then loop through it in your view.


Messages In This Thread
how to output MySQL query results? - by El Forum - 07-10-2008, 10:53 PM
how to output MySQL query results? - by El Forum - 07-11-2008, 01:00 AM



Theme © iAndrew 2016 - Forum software by © MyBB