嗨,我正在尝试从mysql数据库中检索数据以创建flot图
任何人都可以引导我完成此过程,或者让我知道该怎么做
谢谢

最佳答案

您可能想要这样的东西。我没有使用过flot,但是我查看了示例here

<?php
//create array of pairs of x and y values
$dataset1 = array();
while ($row = mysql_fetch_assoc()) { //or whatever
    $dataset1[] = array( $row['xvalue'], $row['yvalue'] );
}
?>

<script type="text/javascript">
    //put array into javascript variable
    var dataset1 = <?php echo json_encode($dataset1); ?>;

    //plot
    $(function () {
         $.plot($("#placeholder"), [ dataset1 ]);
    });
</script>

07-28 11:14