PHP code example of crazedsanity / authtoken

1. Go to this page and download the library: Download crazedsanity/authtoken library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

crazedsanity / authtoken example snippets


$x = new cs_authToken($db, $uidOfUser);
$hash = $x->create_token($email);

$x = new cs_authToken($db);

$authData = $x->authenticate_token($hash, $key);

if($authData['result'] == true) {
	//authenticated! use 'stored_value' to help in resetting their password
	$myData = $authData['stored_value'];
}