Monday, July 1, 2013

Data Validation class

PHP Scripts - Data Validation class - CodeCanyon

Data Validation class his title this type of PHPScripts/Miscellaneous This time I will review,made by Sitebase, PHPScripts/Miscellaneous is sold at a price of $3 in CodeCanyon. Data Validation class - CodeCanyon Item for Sale data // date // email // numeric // php class // security // test // url // validation // variables //
Created 13 November 09
Last Update 13 November 09
Compatible Browsers Firefox, IE6, IE7, IE8, Safari
Software Version PHP 5.x, jQuery
Software Framework N/A
Files Included PHP

The key to a stable and secure application or website is data validation. Validating things like email addresses, numbers, and other data can be very time consuming and add a lot of extra lines of code to your website if you want to do it the right way. This class can make the data validation part of website development a lot easier.

This class is very easy to use. Because all the methods are static they are faster and callable without instantiating the class. This will say that you only need to include the PHP file in your code and do the validations like below. The method returns a boolean (true when it’s valid, false when invalid). To show you some examples:

Email validation:

 if(!Validator::Email("wim(at)test.com")){ echo "Your email is invalid"; } 

Email validation and don’t accept addresses that end with test.com or test.be:

 if(!Validator::Email("wim(at)test.com", array("test.com", "test.be"))){ echo "Your email is invalid"; } 

Check if a number is between 20 and 50:

 if(!Validator::Number(35, 50, 20)){ echo "The number is not between 20 and 50"; } 

Check if a user is older than 18:

 if(!Validator::OlderThan("1966-2-5", 17)){ echo "You must be older than 18."; } 

Features

  • Email
  • Url
  • IP
  • Phone numbers
  • Number (extra parameter to check if the number is between min and max)
  • Unsigned Number
  • Float
  • Alpha
  • Alpha numeric
  • String length is between min and max characters
  • Hexcolor
  • Date
  • Check if someone born on date x is older than x years
  • Valid XML
  • Filesize between min and max bytes
  • Image dimensions between width is beween min and max and/or height is between min and max pixels

Updates

13/12/2009:

  • Added chars validation
  • Fixed Alpha method typo

18/11/2009:

  • Added phone number validation
  • Fixed wrong images :)

Related produck This user:Sitebase

Google Maps for Mobile Site PRO - CodeCanyon Item for Sale Twitter Wall for Mobile Site PRO - CodeCanyon Item for Sale Mobile Site PRO - CodeCanyon Item for Sale News Widget for WordPress - CodeCanyon Item for Sale Testimonials for WordPress - CodeCanyon Item for Sale API Client - CodeCanyon Item for Sale Html Helper Class - CodeCanyon Item for Sale

More items by Sitebase

No comments:

Post a Comment