26
Apr
by John Skoumbourdis
Image CRUD is an automatic multiple image uploader for Codeigniter. With the same philoshopy of grocery CRUD library. Just simple line of codes and you have all the functionality that you need.

Some of the main features of Image CRUD are:
- multiple selection of photos to upload the same time
- auto thumbnail croping
- auto croping for max size image (800px X 600px max)
- reordering the photos after the upload
- delete image
- auto renaming special characters
- adding a relation and automatically adding id from the url
continue reading…
28
Dec
by John Skoumbourdis
This is a codeigniter CRUD. It is fully tested in codeigniter 2.0 and in 1.7.x. It is simple and has many features . The main feauture is that a customer can easily use this crud, not only a developer!!
continue reading…
18
Dec
by John Skoumbourdis
Codeigniter is a great framework for php . It is simple and already helps lot of people to write faster code. The documentation is very good with examples for all the classes – functions.
But (there is always a but…!) in eclipse we used to have our own classes and when we write the “magic arrow” -> we are waiting to have a dropdown list with the functions/variables that the class have .

In Codeigniter till now we write for example $this->session-> … and then we go to the codeigiter website just to see what was the name of the function .
For that reason I created a fake Controller. This is only a fake Controller and it used ONLY for the autocomplete. You can copy paste it WHEREVER you like in the project (because is fake).
continue reading…