reCAPTCHA V3 Example in PHP

<!DOCTYPE html> <html> <head> </head> <body> <?php ## reCAPTCHA V3 key define ## #client-side define(‘RECAPTCHA_SITE_KEY’, ‘reCAPTCHA_site_key’); // define here reCAPTCHA_site_key #server-side define(‘RECAPTCHA_SECRET_KEY’, ‘reCAPTCHA_secret_key’); // define […]

Read More

Multiple words of string replace with str_replace in PHP

<?php    ## Converting utf8 characters to iso-88591 manually in PHP    echo “<meta http-equiv=’Content-Type’ content=’text/html; charset=UTF-8′ />”;        function str_replace_char(){          $find = array(‘“’, ‘’’, […]

Read More