3v4l.org

run code in 300+ PHP versions simultaneously
<html> <head><title>Simple PHP Script to get the Latitude and Longitute using Google API - Blog.Theonlytutorials.com</title></head> <body> <h2>Simple PHP Script to get the Latitude and Longitude using Google API - Blog.Theonlytutorials.com</h2> <br /> <form action="" method="post"> Type Your Location : <input type="text" name="myaddress" /> (eg. Whitefield, Bangalore) </form> <br /> <?php //blog.theonlytutorials.com //author: agurchand if(isset($_POST['myaddress'])){ $myaddress = urlencode($_POST['myaddress']); //here is the google api url $url = "http://maps.googleapis.com/maps/api/geocode/json?address=$myaddress&sensor=false"; //get the content from the api using file_get_contents $getmap = file_get_contents($url); //the result is in json format. To decode it use json_decode $googlemap = json_decode($getmap); //get the latitute, longitude from the json result by doing a for loop foreach($googlemap->results as $res){ $address = $res->geometry; $latlng = $address->location; $formattedaddress = $res->formatted_address; ?> <br /> <!-- Print the Latitude and Longitude --> <?php echo "Latitude: ". $latlng->lat ."<br />". "Longitude:". $latlng->lng; ?> <h2>Dynamic Location on Google Map!</h2> <iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=<?php echo $myaddress;?>&amp;ie=UTF8&amp;hq=&amp;hnear=<?php echo urlencode($formattedaddress);?>&amp;t=m&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe> <?php } } ?> </body> </html>
Output for git.master, git.master_jit, rfc.property-hooks
<html> <head><title>Simple PHP Script to get the Latitude and Longitute using Google API - Blog.Theonlytutorials.com</title></head> <body> <h2>Simple PHP Script to get the Latitude and Longitude using Google API - Blog.Theonlytutorials.com</h2> <br /> <form action="" method="post"> Type Your Location : <input type="text" name="myaddress" /> (eg. Whitefield, Bangalore) </form> <br /> </body> </html>

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
47.56 ms | 402 KiB | 8 Q