Rapid Development with Codeigniter and RedBean ORM (+source code)
1–9 of 9 posts
Re: Rapid Development with Codeigniter and RedBean ORM (+source code)
#2Re: Rapid Development with Codeigniter and RedBean ORM (+source code)
#3It seems like it's mostly the tool of choice for web designers.
Re: Rapid Development with Codeigniter and RedBean ORM (+source code)
#4I can't be the only one who thinks Codeigniter is a terrible framework. Does it still break GET vars by design? It seems like it's mostly the tool of choice for web designers.
Re: Rapid Development with Codeigniter and RedBean ORM (+source code)
#5I'm wondering, would it be useful for anyone if I added html5 boilerplate and folder structure for js/css/img ?
Re: Rapid Development with Codeigniter and RedBean ORM (+source code)
#6I can't be the only one who thinks Codeigniter is a terrible framework. Does it still break GET vars by design? It seems like it's mostly the tool of choice for web designers.
Re: Rapid Development with Codeigniter and RedBean ORM (+source code)
#7I can't be the only one who thinks Codeigniter is a terrible framework. Does it still break GET vars by design? It seems like it's mostly the tool of choice for web designers.
Yes, it does. But you can access GET vars using $this->input->get('variable_name'), which coupled with built in global XSS filtering is much better idea than accessing GET directly.
Re: Rapid Development with Codeigniter and RedBean ORM (+source code)
#8Earlier quoted context omitted.
Yes, it does. But you can access GET vars using $this->input->get('variable_name'), which coupled with built in global XSS filtering is much better idea than accessing GET directly.
The fact that they're available at all now is an improvement from when I last had to use it.
One thing conspicuously missing are (good) generators; I typically prefer things like seam-gen or the rails generators to lay the groundwork. I ended up rolling one for my own projects, which makes it phenomenally easy to get an app going.
Re: Rapid Development with Codeigniter and RedBean ORM (+source code)
#9http://www.backwardcompatible.net/post/8961623281/7-reasons-...
RedBean does reduce 7 reasons to 6, but still. With Yii you get everything in a single RAD MVC framework.