Hi 9 davidtricker376400.
I am trying to implement the same. I can Encrypt de passsword just fine.
The Login part I am having the same problem.
Are yours working fine? The login part?
Here's my "Create new user with encrypted pass" thing... (mysqli extension)
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
// pass encrypt
if(isset($_POST['pass'])) {
$password_string = mysqli_real_escape_string($_POST["pass"]);
$password_hash = password_hash($password_string, PASSWORD_BCRYPT);
}
//
$InsertQuery = new WA_MySQLi_Query($connection);
$InsertQuery->Action = "insert";
$InsertQuery->Table = "users_table";
$InsertQuery->bindColumn("email", "s", "".((isset($_POST["email"]))?$_POST["email"]:"") ."", "WA_DEFAULT");
$InsertQuery->bindColumn("pass", "s", "".($password_hash) ."", "WA_DEFAULT");
$InsertQuery->saveInSession("usr_ad");
$InsertQuery->execute();
$InsertGoTo = "usrs.php";
if (function_exists("rel2abs")) $InsertGoTo = $InsertGoTo?rel2abs($InsertGoTo,dirname(__FILE__)):"";
$InsertQuery->redirect($InsertGoTo);
}
?>
Thank you!


