Internal ErrorAn internal error has occured and caused the request to halt.
Please refresh the page to try again.
--------------------------------------------------------------------------------
For details of this error, please check your log files. View the debug manual page for more information:
Troubleshooting/Debug Manual Page
$algo='sha256';
$data='$password';
$key='%+jdguUp>^4';
hash_hmac ($algo , $data , $key [ $raw_output = true ] );
echo hash_hmac('sha256', '$password', '%+jdguUp>^4');
$hashed= hash_hmac('sha256', '$password', '%+jdguUp>^4');
echo $hashed;
// Add the user.
$query = "INSERT INTO users (email, password, first_name, last_name, username, company, address, city, state, zip, country, website, tel_area, tel_three, tel_four, tel_ext, mobile_area, mobile_three, mobile_four, status, joined) VALUES ('$email', '$hashed', '$first_name', '$last_name', '$username', '$company', '$address', '$city','$state','$zip', '$country', '$website', '$tel_area', '$tel_three', '$tel_four', '$tel_ext', '$mobile_area', '$mobile_three', '$mobile_four', '$status', NOW() )";
$ php -a
Interactive shell
php > $foo = 'bar';
php > var_dump($foo, "$foo", '$foo');
string(3) "bar"
string(3) "bar"
string(4) "$foo"
php >
It looks like you're new here. If you want to get involved, click one of these buttons!