diff options
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); |