Image Viewer with Thumbnails using Mootools
This is a simple tutorial for creating an image viewer with thumbnails using Mootools.
8 Web Based GUI's for MySQL

Let's face it. Using the console for administrating MySQL can eat up a lot of time unless you've been doing just that your whole web development career.
If you're on that side, good for you. But for us 'normal' people, we tend to use GUI's for managing MySQL databases. And installing softwares can be cumbersome.
UserCake : Simple User Management System

User Management is a commonly seen in most web applications today. That's why it's important for any web application to have a pretty secure scalable user management system.
Welcome, UserCake (not to be affiliated with the PHP Framework CakePHP). It acts as a baseline for you user management needs.
CodeIgniter Image Manipulation Class: How to Resize

The CodeIgniter Image Manipulation Class is a useful tool when implementing simple resize, cropping, rotate, watermarking and flipping of images are required in your project.
Here is a series of code templates for using the CodeIgniter Image Manipulation Class:
First one is resizing:
The Right Way to Get a File Extension in PHP
I made a recent search on retrieving file extensions in PHP.
I found out that a lot have been re-inventing the wheel. They have been creating code for functionality that PHP already has. This is one example of re-inventing the wheel
function get_file_extension($file_name)
{
return substr(strrchr($file_name,'.'),1);
}
Another example was this:
function file_extension($filename)
{
return end(explode(".", $filename));
}
PHP already has a function that does the same thing and more.
PHP Delete Function
There is actually no delete function in PHP. However, there is a PHP function that does the function of a delete if there was one.
Welcome unlink, the PHP delete function.
PHP Unlink function usage
unlink('/uploads/my_photo.gif');
Check One Check All Using jQuery

Today, we will be writing a jQuery Example of our Check One Check All functionality using Mootools
Check One Check All Using Mootools

Imagine going through a 25 item per page application and you need to check them all. Wouldn't it be a good thing if you have the functionality of a check one/check all for checking all those checkboxes? If yes, you would agree that this should be on every appropriate web application.

