Что то у меня не получается собрать все во едино. Я новичок и прошу мне помочь со скриптом
подключаю скрипт
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
отправляю форму файлу обработчику reg.php
<form action="reg.php" method="post">
<input type="email" placeholder="Введите Ваш email адрес..." required name="email" />
<input type="password" placeholder="Ваш сложный пароль..." required name="passw" />
<div class="g-recaptcha" data-sitekey="КЛЮЧ"></div>
<input type="submit" value="Зарегистрироваться" name="submit_reg"/>
</form>
if($_POST['submit_reg'])
{
if(empty($_POST['email']) && empty($_POST['passw']) && empty($_POST['g-recaptcha-response'])) {
echo "заполните все";
exit();
} else {
$recaptcha = $_POST['g-recaptcha-response'];
$google_url="https://www.google.com/recaptcha/api/siteverify";
$secret='Google Secret Key';
$ip=$_SERVER['REMOTE_ADDR'];
$url=$google_url."?secret=".$secret."&response=".$recaptcha."&remoteip=".$ip;
$json = function_which_verify_recaptcha($_POST['g-recaptcha-response']);
$reponse = json_decode($json, true);
if ($response['status'] === true) {
}