douhui4831 2013-07-10 05:04
浏览 24
已采纳

无法在信息窗口中显示数据GoogleMap包含JavaScript变量中的文本或字符串,查询中包含php文本

I have some problem, i want show data on the infowindow that using GoogleMap API, that i queries from Database and call with php script and save on Javascript text. Here's My Code

var contentString = '<b>Bermuda Triangle Polygon</b><br>';
var infoo = <?php
include_once("koneksi.php");
$sql3="SELECT a.Informasi from asset a where ID_Asset='AST01'";
$result3 = mysql_query($sql3);
$data3 = mysql_fetch_row($result3);
Print $data3[0];
?>;
contentString += 'Informasi: <br>' + infoo + '<br>';
infoWindow.setContent(contentString);
infoWindow.setPosition(event.latLng);
infoWindow.open(map);

When i change query that return number data it work, but it doesnt' work if return text or string data. Anyone Help

  • 写回答

1条回答 默认 最新

  • dtlh12053 2013-07-10 07:10
    关注

    Just for consistency (and so the answer can be marked):

    var infoo = "<?php
        include_once("koneksi.php");
        $sql3="SELECT a.Informasi from asset a where ID_Asset='AST01'";
        $result3 = mysql_query($sql3);
        $data3 = mysql_fetch_row($result3);
        Print $data3[0];
    ?>";
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 用twincat控制!
  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥20 求快手直播间榜单匿名采集ID用户名简单能学会的
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决