我想使用PHP查询mysql数据库获取某些结果,并使用javascript在警告对话框中显示结果。 我可以在php页面上显示结果时连接并查询数据库,但无法在警报窗口中显示它们,我们非常感谢任何帮助。
$sql = "select * from $table where cmscode ='$theWholeCode' ";
$result = mysql_query($sql) or die(mysql_error());
while($row = mysql_fetch_array($result)){
echo $row[2];
}
获得价值 $行[2];
我想在警告框中显示它
答案 0 :(得分:0)
尝试将其放在您的页面上:
$sql = "select * from $table where cmscode ='$theWholeCode' ";
$result = mysql_query($sql) or die(mysql_error());
echo '<script type="text/javascript">';
while($row = mysql_fetch_array($result)){
echo 'alert(\'' + $row[2] + '\');';
// or, as @3n1gm4 suggested (which I also recommend)
echo 'console.log(\'' + $row[2] + '\');';
}
echo '</script>';