This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (!empty($_GET['location'])){ | |
$maps_url = 'https://'. | |
'maps.googleapis.com/'. | |
'maps/api/geocode/json'. | |
'?address=' . urlencode($_GET['location']); | |
$maps_json = file_get_contents($maps_url); | |
$maps_array = json_decode($maps_json, true); | |
$lat = $maps_array['results'][0]['geometry']['location']['lat']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Basic Responsive Email | Single File Proof of Concept</title> | |
</head> | |
<body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"> | |
<style> | |
td.mobile { | |
display: none; |
NewerOlder