<!-- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Flot Examples</title>
<link href="layout.css" rel="stylesheet" type="text/css">
<!--[if lte IE 8]><![endif]-->
<script type="text/javascript" src="./js/excanvas.min.js"></script>
<script type="text/javascript" src="./js/jquery.js"></script>
<script type="text/javascript" src="./js/jquery.flot.js"></script>
</head>
<body>
<h1>Flot Examples</h1>
<div id="placeholder" style="width:600px;height:300px;"></div>
<p>Simple example. </p>
<?php
$server = "localhost";
$user="harish";
$password="password";
$database = "db";
$connection = mysql_connect($server,$user,$password);
$db = mysql_select_db($database,$connection);
query = "SELECT xval,yval FROM flottable";
$result = mysql_query($query);
while($row = mysql_fetch_assoc($result))
{
$dataset1[] = array($row['xval'],$row['yval']);
}
?>
<script type="text/javascript">
$(function () {
var dataset1 = <?php echo json_encode($dataset1); ?>;
$.plot($("#placeholder"), [ dataset1 ]);
});
/* $(function () {
var d1 = [];
for (var i = 0; i < 14; i += 0.5)
d1.push([i, Math.sin(i)]);
$.plot($("#placeholder"), [ d1 ]); });
*/
</script>
</body>
</html>
伙计这是我的jsp代码我试图从我的数据库中检索数据并尝试从3dyas上绘制它在FLOTCHART上我一直在谷歌搜索我在我的eclipse中单独执行php代码它正在工作意味着$ row ['xval ']&amp; $ row ['yval']都正确地从db中获取值。但是我仍然不知道为什么图表被绘制如果我运行这个jsp文件。我想我做错了什么我不知道我在哪里也googled从数据库获取数据在javascript但我也有相同的结果我们应该使用PHP为此任何帮助或指导表示赞赏
答案 0 :(得分:1)
我认为你混淆了JavaScript和Java。 JSP是Java Server Pages的缩写。 Java和JavaScript是完全不同的语言。
上面显示的代码不包含Java,只包含PHP和JavaScript。
.JSP文件扩展名适用于Java Server Pages,不需要运行JavaScript。 JavaScript可以在PHP和HTML文件中运行。