Skip to content

Instantly share code, notes, and snippets.

View ichsanni's full-sized avatar

Ichsan Nuur Imansyah ichsanni

  • Indonesia
View GitHub Profile
@kaplanmaxe
kaplanmaxe / mail.php
Last active May 7, 2020 05:02
PHP Recaptcha PHP tutorial
<?php
$sender_name = stripslashes($_POST["sender_name"]);
$sender_email = stripslashes($_POST["sender_email"]);
$sender_message = stripslashes($_POST["sender_message"]);
$response = $_POST["g-recaptcha-response"];
$url = 'https://www.google.com/recaptcha/api/siteverify';
$data = array(
'secret' => 'YOUR_SECRET',
'response' => $_POST["g-recaptcha-response"]