verify.php

prepare(“INSERT INTO members
(full_name, phone, email, state, prant, district, payment_id)
VALUES (?,?,?,?,?,?,?)”);

$stmt->bind_param(“sssssss”,$name,$phone,$email,$state,$prant,$district,$payment_id);
$stmt->execute();

// Send email
mail($email, “Payment Success”, “Payment ID: $payment_id”);

echo “✅ Payment verified & data saved”;

} else {
echo “❌ Payment verification failed”;
}