After a short holiday we're back with a quicktip on text expansion and code templating.
Not related to Codeigniter in any way whatsoever, I know. But I've had lots of questions as to what it is with 'all the automation going on' in the tutorials.
Layouts and partial view help you effiently organise your view code. You can write cleaner code with less repetitions, which makes your webapps better scalable.
And the good news is: you can create layouts and partials using the default features...
Third in the Codeigniter.tv series 'Creating a MY_Model'.
In this episode we will create insert and update functionality, with just a single method: save(). Also, we'll have a brief look at before and after save methods.
Second in the Codeigniter.tv series 'Creating a MY_Model'.
In this episode we will create all Read functionality. We will create the following methods:
get() - which will return one, multiple or all records from a database
get_by()...