Javascript validate email

The Javascript email validation function below will return true if email is correct, false – otherwise.
Read more »

Google friendly domain redirect

You must use Google friendly domain redirect in these cases:

  1. You changed a domain name for your web page and want the old one to redirect visitors to a new one.
  2. You have many domains for your website (one primary and many alternative).
  3. You want to strip the ‘www’ part from the domain name.

Read more »

PHP validate email

PHP validate email script is an easy way to validate an email address. Use this quick and simple PHP regular expression for email validation. This is also case-insensitive, so it will treat all characters as lower case. Read more »

PHP password protect

PHP password protect – is a script which you need to protect some page generated with PHP. Password protection for a single page. Visitors are required to enter a password and username to view the page content.
Read more »

PHP random password generator

PHP password generator is a complete, working random password generation function for PHP. It allows the developer to customize the password: set its length and strength. Just include this function anywhere in your code and then use it. Read more »