Kan tillägga att detta fungerar:
$stmt = $mysqli->prepare("INSERT INTO h_users (username, othername, email, password) VALUES (?, ?, ?, ?)");
$stmt->bind_param("ssss", $username, $othername, $email, $password);
$password = password_hash($_POST["pass1"], PASSWORD_DEFAULT);
$email =...