इसे बदलें
$stmt->bindParam(':email', $_POST['email']);
$stmt->bindParam(':username', $_POST['username']);
$stmt->bindParam(':password', password_hash($_POST['password'], PASSWORD_BCRYPT));
इसके लिए
$email = $_POST['email'];
$username = $_POST['username'];
$password = password_hash($_POST['password'], PASSWORD_BCRYPT);
$stmt->bindParam(':email', $email);
$stmt->bindParam(':username', $username);
$stmt->bindParam(':password',$password);
त्रुटि संदेश स्पष्ट है, हालांकि आपको उन मानों को चर में निर्दिष्ट करने की आवश्यकता है, फिर उन्हें पास करें