gpt4 book ai didi

php - 如何使用 PHP 和 MYSQL 创建饼图?

转载 作者:太空宇宙 更新时间:2023-11-03 12:18:07 24 4
gpt4 key购买 nike

我有一个显示我的数据的表格,它工作得很好。我还需要添加一个饼图来显示与表格中显示的数据完全相同的数据。

 <thead>
<tr>
<th>Account Type</th>
<th>Account Number</th>
<th>Account Balance</th>
</tr>
</thead>
<?php
$query = "SELECT * FROM account WHERE user_id='$user_id'";
$result = mysqli_query($link, $query) or die(mysqli_error($link));
while ($row = mysqli_fetch_array($result)) {
$acc_type = $row ['account_type'];
$acc_num = $row ['account_number'];
$acc_bal = $row ['account_balance'];

?>
<tbody>
<tr>
<td><?php echo $acc_type ?></td>
<td><?php echo $acc_num ?></td>
<td>$ <?php echo $acc_bal ?></td>
<?php
}
?>
</tr>
</tbody>
<tr class="alt">
<?php
$query = "SELECT SUM(account_balance) AS account_total FROM account WHERE user_id='$user_id'";
$result = mysqli_query($link, $query) or die(mysqli_error($link));
while ($row = mysqli_fetch_array($result)){
$acc_total = $row ['account_total'];
?>
<td colspan="2" align="right"><b>Total: </b></td>
<td align="right"><b>$ <?php echo $acc_total ?> </b></td>
<?php
}
?>
</tr>

最佳答案

使用第三方。

这是一个。查看他们的示例 #15 - 基本饼图 http://pchart.sourceforge.net/documentation.php?topic=exemple15

关于php - 如何使用 PHP 和 MYSQL 创建饼图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21219856/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com