diff options
author | arf20 <aruizfernandez05@gmail.com> | 2024-05-01 21:38:03 +0200 |
---|---|---|
committer | arf20 <aruizfernandez05@gmail.com> | 2024-05-01 21:38:03 +0200 |
commit | 344f0fd8546d393fcc372fd340f0c1b6455c4dfb (patch) | |
tree | 24e79188a6aae2763ab68097a75f6034dbc42fdd /makeinvoices.php | |
parent | e11d24e700d9f44364b4b8960ab67c46aa286619 (diff) | |
download | arfnet2-cstims-344f0fd8546d393fcc372fd340f0c1b6455c4dfb.tar.gz arfnet2-cstims-344f0fd8546d393fcc372fd340f0c1b6455c4dfb.zip |
Fix typo...
Diffstat (limited to 'makeinvoices.php')
-rw-r--r-- | makeinvoices.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makeinvoices.php b/makeinvoices.php index de16c4b..ca0201a 100644 --- a/makeinvoices.php +++ b/makeinvoices.php @@ -81,7 +81,7 @@ $result = mysqli_stmt_get_result($stmt); $clients = $result->fetch_all(MYSQLI_ASSOC); // Get due orders -$sql = "SELECT id, service, name, client, billing, date FROM orders WHERE status = 'active'""; +$sql = "SELECT id, service, name, client, billing, date FROM orders WHERE status = 'active'"; $stmt = mysqli_prepare($link, $sql); mysqli_stmt_execute($stmt); $result = mysqli_stmt_get_result($stmt); |