Welcome Guest, Not a member yet? Register   Sign In
dynamic models
#2

[eluser]Colin Williams[/eluser]
application/models/apple_model.php:

Code:
class Apple_model extends Model {

   var $color = 'red';

  function set_color($color)
  {
    $this->color = $color;
  }

}

controller:

Code:
$this->load->model('apple_model');
$apple = new Apple_model();
$apple->set_color('green');


Messages In This Thread
dynamic models - by El Forum - 08-30-2008, 06:50 PM
dynamic models - by El Forum - 08-30-2008, 09:32 PM



Theme © iAndrew 2016 - Forum software by © MyBB