我有以下代码从数据库中提取地址。
<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>