This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Friday, 31 May 2013

how to create your own captcha image easily

This tutorial tell you how to create your own captcha image. You should follow these steps: Copy the code below and save it as "create_image.php" <?php //Start the session so we can store what the security code actually is session_start(); //Send a generated image to the browser Create_Captcha_Images(); exit(); function Create_Captcha_Images()...

Wednesday, 29 May 2013

How to change states list depending on selected country

This tutorial tell you how to How to change states list depending on selected country. You should follow these steps: Create your database connection.e.g. <?php $con=mysql_connect ("localhost","username","password"); @mysql_select_db('your_bd') or die(mysql_error()); // Check connection if (!$con) { echo "Failed to connect to MySQL: "; } ?> Create...

How to display images stored in database

            This code is for showing your images from database. (Don't forget to connect with dababase). You can see storage of images in database here. <?php  $query_image = "SELECT * FROM acc_images";  // This query will show you all images if you want to see only one image...

Saturday, 18 May 2013

Form validation on keyup using jquery (very easy)

            It is need of some clients that user cannot enter any special character(# @ $ % ^ & *) in text field. E.g. in the place of first name, last name etc. So it is very easy to do so just copy and past the code below and see the fun. Don't forget to include jquery file. You can download...