1

我有以下代码从数据库中提取地址。

 <td class="center"><?php echo ($customer->address!='')?$customer->address:'NA';?></td>

并在管理区域显示地址。

我想使用链接到谷歌地图的地址

<a href="maps.google.com/?p= {then the addy} "> {the addy} </a>

但是,当我将链接添加到代码时,代码会中断。

最近的尝试是

<td class="center"><a href="http://map.google.com/?p=<?php echo ($customer->address!='')?$customer->address:'NA';?>"><?php echo ($customer->address!='')?$customer->address:'NA';?></a></td>
4

2 回答 2

5

您的代码很好,只需将您的谷歌地址更改为https://maps.google.com/maps?q=

于 2013-08-03T22:15:54.857 回答
1

要获得有效的 Google 地图 URL,您只需访问http://maps.google.com,输入您想要的地址,然后单击“链接按钮”。您可以精简到仍然有效的较短版本。例如:1 5th Avenue, Manhattan, New York 类似于 https://maps.google.co.uk/maps?q=1+5th+Avenue,Manhattan,New+York,United+States。所以只需在地址的各个部分之间添加“,”并为每个空格添加一个“+”。

于 2013-08-03T22:07:32.097 回答