aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorarf20 <aruizfernandez05@gmail.com>2024-05-01 21:38:03 +0200
committerarf20 <aruizfernandez05@gmail.com>2024-05-01 21:38:03 +0200
commit344f0fd8546d393fcc372fd340f0c1b6455c4dfb (patch)
tree24e79188a6aae2763ab68097a75f6034dbc42fdd
parente11d24e700d9f44364b4b8960ab67c46aa286619 (diff)
downloadarfnet2-cstims-344f0fd8546d393fcc372fd340f0c1b6455c4dfb.tar.gz
arfnet2-cstims-344f0fd8546d393fcc372fd340f0c1b6455c4dfb.zip
Fix typo...
-rw-r--r--makeinvoices.php2
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);