Simple Graph Animation using only CSS3
In this tutorial we are going to see how to do a Graph Bar Animation using pure CSS3, no JavaScript used in this tutorial. Its very simple if you already good at CSS techniques.
Because we have used CSS3 in …
PHP, Drupal, jQuery Tutorials Demo & Downloads!
In this tutorial we are going to see how to do a Graph Bar Animation using pure CSS3, no JavaScript used in this tutorial. Its very simple if you already good at CSS techniques.
Because we have used CSS3 in …
Sometimes when you Run a SQL join query in phpMyAdmin, there will be a situation where the entire server will go down because of the long running SQL query.
To kill this long running SQL query, you need to access …
This post shows you how to Unzip a Zipped file using PHP. Its really simple using PHP ZIP extension.
Note this: This script works only If the ZIP extension installed in your PHP server.
PHP has built-in extensions for dealing …
In this post we are going to see how to change any TEXT or STRING to PNG image using PHP. PHP comes with an image processing library called GD library. This has many features like creating an image, drawing a …
Today we are going to see how to prevent executing PHP file / PHP code in a particular Folder. This is really important if you have an Upload file option in your website. Upload option could be any file or …
In this tutorial we are going to see how to add a new <option> tag to an existing <select> drop down using jQuery.
Also we are going to learn how to add <option> to the top of the <select> drop …
This post shows you how to allow only numbers ie., (0-9) in a textbox. Often this code needed in a Registration form to avoid typing Alphabets.
You can see the demo of this script at the bottom of this post!…
Today we are going to see how to make all the checkboxes checked when the user clicks the top checkbox ie., (Select All checkbox) . This script is really easy and is often needed in many situation.
Here is the …