Posts

Showing posts from October, 2015

Send a post Request With the Help Of PHP curl Operation

function fetch_data(){ $ch = curl_init();         curl_setopt($ch, CURLOPT_URL, "url for the post method");         curl_setopt($ch, CURLOPT_POST, 1);         curl_setopt($ch, CURLOPT_POSTFIELDS,                     "postfieldname=postfieldvalue");               // receive server response ...         curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);         $server_output = curl_exec($ch);         curl_close($ch);              return  $server_output; }

google map distance finder

var  map ; var directionsService = new  google . maps .DirectionsService( ); var directionsDisplay = new  google . maps . DirectionsRenderer(); var map_center; var map_zoom;