Related Articles
Get Google Maps API Address based on Address
$url = “http://maps.googleapis.com/maps/api/geocode/json?sensor=false&address=”.urlencode($resident_address); $lat_long = get_object_vars(json_decode(file_get_contents($url)));// pick out what we need (lat,lng)$lat = $lat_long[‘results’][0]->geometry->location->lat;$lng =$lat_long[‘results’][0]->geometry->location->lng; /*echo $lat;echo $lng;*/
Free Online Web Conferencing Websites
Top web conference sites are undoubtedly Cisco Webex, GoToMeeting. But both need to download soft wares whenever you have a meeting. OK that’s not important see below for the list of best online web conferencing websites/tools. Free Online Web Conferencing Websites 1. Cisco Webex http://www.webex.com/ 2. GoToMeeting http://www.gotomeeting.com/fec/ 3. Anymeeting http://www.anymeeting.com/ 4. Google Hangouts http://www.google.com/+/learnmore/hangouts/ 5. FuzeBox https://www.fuzebox.com/ 6. Join.me https://join.me/ […]
How to Get MySql Query Result as an Email
If you are working on a big mysql query and want to get the mysql query as email when it finishes use the below trick. Go to mysql command:Set pager directive: mysql> pager mail -s “subject” emailme@domain.comPAGER set to ‘mail’ -s “subject” emailme@domain.com The trick uses pager directive to redirect the query output result to […]


