CodeIgniter Forums
Starting with CodeIgniter setup: suggestions & best practices - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Starting with CodeIgniter setup: suggestions & best practices (/showthread.php?tid=21388)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12


Starting with CodeIgniter setup: suggestions & best practices - El Forum - 04-28-2012

[eluser]FightingMan[/eluser]
Nice post... Thanks Smile


Starting with CodeIgniter setup: suggestions & best practices - El Forum - 06-12-2012

[eluser]YoussefUSF[/eluser]
Thank You <3


Starting with CodeIgniter setup: suggestions & best practices - El Forum - 08-06-2012

[eluser]osama[/eluser]
Wonderful Post Thank You !


Starting with CodeIgniter setup: suggestions & best practices - El Forum - 08-16-2012

[eluser]Unknown[/eluser]
nice teach. Thank you.


Starting with CodeIgniter setup: suggestions & best practices - El Forum - 10-13-2012

[eluser]orabines[/eluser]
Hey Jelmer .. Thank you very much for your help ... it was a really good way for me to start my experience with CI. I have been digging into it for 2 days now and I find it very interesting ... Im enjoying the state of confusion in which Im in now .. Great job and thank you again for the help


Starting with CodeIgniter setup: suggestions & best practices - El Forum - 10-22-2012

[eluser]Unknown[/eluser]
This is really a good guide for just like me.. a beginner in codeIgniter, thanks


Starting with CodeIgniter setup: suggestions & best practices - El Forum - 10-25-2012

[eluser]moonmoomin[/eluser]
Thank you!




iPad/iPhone Game downloads
---www.megapick.net


Starting with CodeIgniter setup: suggestions & best practices - El Forum - 11-21-2012

[eluser]Unknown[/eluser]
Thanks


Starting with CodeIgniter setup: suggestions & best practices - El Forum - 11-27-2012

[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?



Starting with CodeIgniter setup: suggestions & best practices - El Forum - 11-27-2012

[eluser]Aken[/eluser]
CI's active record isn't an ORM. Setters and getters aren't helpful in its case. (Also, __call() is meant for methods, not properties.)

There's no set date for 3.0's release.