[eluser]pisio[/eluser]
Code:
class data extends CI_Model{
public function __call($name, $arguments) {
$this->$name = $arguments;
}
public function __get($name) {
return $this->$name;
}
}
$this->data->pisio = " isnt it ? ";
print_r($this->data->pisio);
I think that will be good idea in new version of CI.
It will be more fast and clean code with mysql(active records ) relation and view.
And I think : Option to auto-load php interfaces will be too good idea.
when will the new version come out?