So i have collected addresses in my database in the following format:
address line 1 | address line 2 | post code
How can i pull this in through php to generate an embedded google maps?
Someone like this is what im looking for:
<?php
$address = $address_line_1 . $address_line_2 . $postcode
?>
<iframe src="http://www.google.com/maps/embed?<?= $address ?>"></iframe>