in my PHP
$qur = 'UPDATE customer SET cust_refreshtoken= ".$refreshcode.'" , cust_verify = "'.$date.'" , cust_refreshtoken_exp= "'.$today.'" WHERE cust_email= `'.$email.'` ';
if($redirect = $conn->query($qur)){
echo "done";
}else{
echo "error" . $conn->error;
}
where $refreshcode
is sha512 hash and $date
is sha1 $today
is sha1 timestamp and $email
is something like some.one@gmail.com
what can I do here ?