異なるアドレスを使用してダイナミック マップを作成することは非常に困難ですが、拡張子なしでも可能です。
$company_name = "Cybernician";
$address = "56/14,ShaheenBagh,AbulFazal Enc-II,Jamia Nagar-110025";
$city ="Delhi";
$state = "Delhi";
$company_name = str_replace(' ', '%20', $company_name);
$map_address = $address.' '.$city.' '.$state.' '.'India';
$map_address = str_replace(' ','%20',str_replace(',', ' ', $map_address));
$map_address = str_replace('&','and',str_replace('%20%20','%20',$map_address));
「&」などの不要な記号を可能な限りフィルタリングして削除し、他の人が最終的にこのコードを使用します
<div style="width: 330px;margin-left: 15px;"><iframe width="330" height="220" src="http://regiohelden.de/google-maps/map_en.php?width=330&height=220&hl=en&q=<?php echo $map_address; ?>+(<?php echo $company_name; ?>)&ie=UTF8&t=&z=9&iwloc=A&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"><a href="http://www.regiohelden.de/google-maps/">Google Maps Script</a> von <a href="http://www.regiohelden.de/">RegioHelden</a></iframe><br /><span style="font-size: 7px;"><a href="http://www.regiohelden.de/google-maps/" style="font-size: 7px;">Google Maps Script</a> by <a href="http://www.regiohelden.de/" style="font-size: 7px;">RegioHelden</a></span></div></div>