PHP Classes

Token Grid Authentication

Recommend this page to a friend!

      Secure Token Grid Authentication  >  All threads  >  Token Grid Authentication  >  (Un) Subscribe thread alerts  
Subject:Token Grid Authentication
Summary:Token Grid Authentication
Messages:2
Author:jafar salam
Date:2013-08-30 03:52:15
Update:2013-10-13 09:54:11
 

 


  1. Token Grid Authentication   Reply   Report abuse  
Picture of jafar salam jafar salam - 2013-08-30 03:52:15
Hi André;

thanks for Token Grid Authentication script . Is there a sample of a login form with Token Grid Authentication script. thanks so much
jeff

  2. Re: Token Grid Authentication   Reply   Report abuse  
Picture of André Liechti André Liechti - 2013-10-13 09:54:11 - In reply to message 1 from jafar salam
Hello,

Example 3 in the readme.txt:

require_once('tokengrid.class.php');
$token_grid = new TokenGrid(10, 10, 4, "MySalt");
if ($token_grid->CheckToken($_POST['random_position'], 'SpecificUserId', $_POST['token']))
{
echo "Token is valid";
}

Regards,

André