If you want more of my pastes visit: https://randompaste.000webhostapp.com/index.html
--------------------------------------------------------------------------------------
EasySchool
Inscription
12,
];
$hashpass = password_hash($password, PASSWORD_BCRYPT, $options);
$req = $pdo->prepare('INSERT INTO user SET username = ?, password = ?, email = ?, name = ?, surname = ?');
$req->execute([
$pseudo,
$hashpass,
$email,
$name,
$surname
]);
}
} ?>