Subscribe For Free Updates!

We'll not spam mate! We promise.

Jun 6, 2014

Redirect with HTTP Status Code - PHP

Redirect with HTTP Status Code - PHP :   Redirect one url to another url using php is simply run with "header ("Location: redirectURL");" . But redirect with HTTP Status Code is more efficient to optimize for search engines.     Here i will explain about php redirect with http status code. These http status code is common for...

Jun 5, 2014

PHP Validate Credit Card Number

PHP Validate Credit Card Number :   Now a days , credit card purchase is happened in many websites. The below php function is used to validate the given credit card number in php. function isCreditCardValid ( $number, $cctype ) {     if ( !is_string ( $number)          || !trim ( $number ) )              return false;            $ccs = array (  ...