How to integrate Google reCAPTCHA in PHP Form

Hi all, I’ve to show, how to integrate Google reCAPTCHA in PHP form. reCAPTCHA protects your website from spam and abuse in form submission. reCAPTCHA uses an advanced risk analysis engine and adaptive challenges to keep automated software from engaging in abusive activities on your website. Here I’ve  integrate google reCAPTCHA in subscription form for […]


corner position picker

Corners Position Picker Using HTML CSS

In this post, I’ve shared a code for corner position picker using HTML and CSS. HTML Code <div id=”aOrginCon”> <label class=”aOrType lt”><input type=”radio” name=”wcs-orgin” value=”left-top” /> <div></div> </label> <label class=”aOrType ct”><input type=”radio” name=”wcs-orgin” value=”center-top” /> <div></div> </label> <label class=”aOrType rt”><input type=”radio” name=”wcs-orgin” value=”right-top” /> <div></div> </label> <label class=”aOrType lc”><input type=”radio” name=”wcs-orgin” value=”left-center” /> <div></div> </label> […]


Fetching current location address using GeoLocation and Google Map

Fetching current location address using GeoLocation and Google Map

HTML Geolocation API is used to fetch geographical position of a user. It can be possible only the user approves it. Geolocation is more accurate for the GPS Enabled mobile devices and others less accuracy. In this post how retrieve the address using Geolocation and Google Map API. HTML <html> <body> <input type=’button’ value=’Find Address’ […]