Tidy spacing

This commit is contained in:
Marcus Hill
2023-01-29 22:42:13 +00:00
parent 31e8298876
commit f1321f6363
+2 -7
View File
@@ -61,17 +61,12 @@ $key = randomString(156);
<option value="">- Client -</option>
<option value="0"> ALL CLIENTS </option>
<?php
$sql = mysqli_query($mysqli, "SELECT * FROM clients WHERE company_id = $session_company_id ORDER BY client_name ASC");
while ($row = mysqli_fetch_array($sql)) {
$client_id = $row['client_id'];
$client_name = htmlentities($row['client_name']);
?>
$client_name = htmlentities($row['client_name']); ?>
<option value="<?php echo $client_id; ?>"><?php echo "$client_name (Client ID: $client_id)"; ?></option>
<?php
}
?>
<?php } ?>
</select>
</div>
</div>