Welcome Guest, Not a member yet? Register   Sign In
Model php problem?
#9

[eluser]InsiteFX[/eluser]
Code:
class Content extends CI_Model {

    function __construct()
    {
        parent::__construct();
    }
    
    function getDate($date)
    {
        
    }
    
    function getDep($did)
    {
        $deps = $this->db->query("SELECT * FROM `dep` WHERE did='$did'");

// Test to see what your query looks like!
$str = $this->db->last_query();
echo $str;
exit;

        $dep = $deps->result();
        return $dep->title;
    }
}

Also you should being using
Code:
$dep = $deps->row();


Messages In This Thread
Model php problem? - by El Forum - 05-22-2012, 12:58 AM
Model php problem? - by El Forum - 05-22-2012, 01:53 AM
Model php problem? - by El Forum - 05-22-2012, 02:01 AM
Model php problem? - by El Forum - 05-22-2012, 02:30 AM
Model php problem? - by El Forum - 05-22-2012, 03:06 AM
Model php problem? - by El Forum - 05-22-2012, 06:38 AM
Model php problem? - by El Forum - 05-22-2012, 06:42 AM
Model php problem? - by El Forum - 05-22-2012, 06:49 AM
Model php problem? - by El Forum - 05-22-2012, 06:58 AM
Model php problem? - by El Forum - 05-22-2012, 07:01 AM
Model php problem? - by El Forum - 05-22-2012, 07:33 AM
Model php problem? - by El Forum - 05-22-2012, 07:36 AM
Model php problem? - by El Forum - 05-22-2012, 07:37 AM
Model php problem? - by El Forum - 05-22-2012, 07:58 AM
Model php problem? - by El Forum - 05-22-2012, 12:09 PM



Theme © iAndrew 2016 - Forum software by © MyBB