Choose your database:
AnySQL
MySQL
MS SQL Server
PostgreSQL
SQLite
Firebird
Oracle
SQL Anywhere
DB2
MaxDB

Subscribe to our news:
Partners
Testimonials
Ananda Theerthan J: "I have been looking for PHP generator for years and now I am happy that I found one. Yes, its the PHP generator for MySQL. I completely rate 10/10 for this product for making life easier. It has lot of features and capabilities especially the CRUD, lookups and data partitioning. I love this product and recommend to others".
Steven Langfield: "I wanted to drop you a mail to say how freaking AMAZING your software is. It will be the best £100 I have ever spent. I have still to read all your documentation to take full advantage but what you have created is truly amazing".

More

Add your opinion

PHP Generator for MySQL online Help

Prev Return to chapter overview Next

OnVerifyPasswordStrength

This event allows you to verify an entered password. The password is accepted only when it meets specified complexity requirements.

 

Signature:

function OnVerifyPasswordStrength ($password, &$result, &$passwordRuleMessage)

 

Parameters:

$password

The entered password.

$result

It must be set to true if entered password meets complexity requirements or to false otherwise.

$passwordRuleMessage

The message to be displayed if entered password does not meet complexity requirements

 

Example:

The following code accepts only passwords with 8 and more characters in length, including at least one upper case letter, one lower case letter, one number and one special character.

 

$atleastOneUppercaseRule   = preg_match('@[A-Z]@', $password);

$atleastOneLowercaseRule   = preg_match('@[a-z]@', $password);

$atleastOneNumberRule      = preg_match('@[0-9]@', $password);

$atleastOneSpecialCharRule = preg_match('@[^\w]@', $password);

 

$result = 

  strlen($password) >= 8 &&

  $atleastOneUppercaseRule &&

  $atleastOneLowercaseRule &&

  $atleastOneNumberRule &&

  $atleastOneSpecialCharRule;

 

$passwordRuleMessage = 

  'Password must be at least 8 characters in length ' . 

  'and must include at least one upper case letter, ' . 

  'one lower case letter, one number, and one special character.';

 



Prev Return to chapter overview Next