Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Butuh bantuan dalam membuat buku besar sederhana dari tabel hutang &kredit mysql?

untuk mencetak tabel itu bisa menjadi sesuatu yang mirip dengan mengikuti menggunakan larik yang disiapkan sebagai larik terakhir

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>Document</title>
</head>
<body>
    <h1>Customer Ledger(<?php echo $rearrangedFinalData[0]['customer'] ?>)</h1>
    <table>
        <tr>
            <td>Date</td>
            <td>Invoice No</td>
            <td>Debit</td>
            <td>Credit</td>
            <td>Balance</td>
        </tr>
        <?php 
        //initialize balance as per your requirement
        $balance = 0;
        foreach($rearrangedFinalData AS $row) {
         ?>
        <tr>
            <td><?php echo $row['date'] ?></td>
            <td><?php echo $row['invoice'] ?></td>
            <td><?php echo $row['debit'] > 0 ? $row['debit'] : '' ?></td>
            <td><?php echo $row['credit'] > 0 ? $row['credit'] : '' ?></td>
            <td><?php echo $balance = ($balance + $row['debit'] - $row['credit']) ?></td>
        </tr>
        <?php } ?>
    </table>
</body>
</html>


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. membangun fitur zona waktu di aplikasi web PHP

  2. Manakah pengkodean karakter terbaik untuk bahasa Jepang untuk tampilan DB, php, dan html?

  3. Mengekspor hasil kueri di MySQL Workbench melebihi 1000 catatan

  4. Karakter Khusus dalam Nama Tabel MySQL

  5. Bagaimana cara mendapatkan catatan berikutnya di dalam kumpulan data hasil mysql?