How can i pass variables into a constructor of a model
ie.
class Car extends Model
{
public Car($params)
{
echo $params…..
..
.
.
.
}
}
Controller{
$this->load->model(‘car’, $params);
}
I have not found a way to this yet. I have to hack around it.
