Subscribe For Free Updates!

We'll not spam mate! We promise.

Aug 25, 2013

Email validation using JavaScript and Jquery

Email validation using JavaScript and Jquery :  Here i will explain how to validate email id with JQuery. In JavaScript we can check the email id format only. but in jquery we can check whether we allow or not some of domain names also. First i will explain basic javascript method to validate email id. Here is Javascript method : function...

Aug 19, 2013

PHP - Validate Email Id

PHP - Validate Email Id :  Here i will explain how to validate email id in php. This is very use full to validate email id in server side. php is used in server so we can validate email id in server side. if you want to validate email id in client side then you can use JavaScript, jquery etc...  The below example will show you how...

Aug 14, 2013

Create directory with current year and month name - php

Create directory with current year and month name - php :     Here i will explain about how to create folder / directory with the current year and month name. It is very usefull to seperate the uploaded image or file with the particular year and month name. Here we will use the simple concept to create this. here date() function...

Aug 13, 2013

Export particular column data from table in phpmyadmin

Export particular column data from table in phpmyadmin :  Here i will explain how to export particular column data from table. we can store the output in .sql or .csv file. In this method the output data will store in a file with newline (\n) separaters. The syntax is : SELECT column_name FROM table_name INTO OUTFILE '/opt/lampp/htdocs/fileName.sql' The...