jQuery Plug-in Development
  jQuery is a JavaScript library used for developing animated and eye-catching visual effects. Here is jQuery plug-in snippet for a non-touchable object.   Include jQuery library and Plug-in in the head element of your file. Insert object as a JavaScript class in <div> section.   <html><head> <script...
Creatin ZIP Archives With PHP
Creating .ZIP archives using PHP could be just easy as creating those on your desktop. PHP Zip libraries provide all the functionalities you need.   In order to create, write, read and delete .ZIP archives you need to ext/zip enabled PHP version. On UNIX, it could be accomplished by adding the –enable-zip...
Website Loading Time Optimization
Google mod_pagespeed includes several adjustments to the Apache configuration to speed up loading of Web pages. Google touted this optimization for some time as part of its Page Speed initiative. The Apache module is under an open source license and is thus free for everyone to use. Each has its own...
Create PHP Classes With Dynamic Functions
It is possible to generate PHP classes with dynamic functions. You can generate all the class attributes from the constructor and still able to access them after class is instantiated. When dealing with classes that have a large number of attributes select all columns in database and create class properties...