PHP
Google reCAPTCHA v3 with php

In this article, I’m going show you how to add Google reCAPTCHA v3 to a form on your PHP website. The latest reCAPTCHA is different than the previous versions—it doesn’t require user interaction at all. In this post, we’ll see how it works, and we’ll build a real-world example for demonstration purposes. As a website […]
Lầy thông tin tên miền từ email trong PHP
Đôi khi bạn cần phải giải nén tên miền từ email bằng PHP vì lý do gì, trong trường hợp đó bạn có thể sử dụng mã bên dưới: $email = “[email protected]”; $domain_name = substr(strrchr($email, “@”), 1); echo “Domain name is :” . $domain_name;