Google Maps Reverse Geocoding API in PHP

Posted by & filed under Google, PHP.

Reverse Geocode Google Maps API in PHP

Google Maps Reverse Geocoding API is the tool (web-service), which converts the given geo-coordinates (latitude , longitude) in to human readable format address like in the illustration below 13.0810 & 80.2740 ————> Poonamallee High Road, Park Town, Chennai, Tamil Nadu, India (Geo-coordinates)….. Read More >>>>

Google maps Geocoding API using PHP

Posted by & filed under Google, PHP.

Google Maps geocode API using PHP

Google maps Geocoding API : Geocoding is the process of converting the given human readable address (no:32, New Street, T nagar,Chennai, India) into geographical co-ordinates (latitude : 15.467 , longitude: 45.789). no:32, new street, t nagar, chennai, India    ….. Read More >>>>

Google Maps Reverse Geocoding in Java

Posted by & filed under Java.

Google Maps Reverse Geocoding in Java

Reverse Geocoding google map API is helpful tool (webservice) that converts given location on maps (latitude & langitude) into human readable address. 15.783 & 45.5698   ————> no:5, new street, t.nagar , Chennai -17. Reverse Geocoding google map API (webservice)….. Read More >>>>

Generate random password in MySQL

Posted by & filed under MYSQL, PHP.

How to generate new random password in MySQL

It’s very simple to generate random password in MySQL. Here is sample MySQL query to generate random password. SELECT substring(MD5(RAND()) from 1 for 10) AS password To generate random password I’m going use three MySQL functions 1. RAND() 2. MD5()….. Read More >>>>

Find number of affected rows by MySQL UPDATE query in Java

Posted by & filed under Java, MYSQL.

How to find out Number of affected rows of MySQL update query in Java

In java executeUpdate() function of Preparedstatement returns integer which gives numbers of rows affected for particular MySQL updation………. Here is the simple code how to access number of affected rows  MySQL UPDATE query in Java……….. statement=connection.prepareStatement(“UPDATE login SET user_name ='”+userName+”‘ WHERE id =”+userID+””); int….. Read More >>>>