sorted even more dropdowns alphabetically

This commit is contained in:
johnny@pittpc.com
2020-04-04 23:35:54 -04:00
parent 76709bdada
commit 7e1ee10a7f
14 changed files with 35 additions and 35 deletions

View File

@@ -134,7 +134,7 @@
<option value="">- Contact -</option>
<?php
$sql_contacts = mysqli_query($mysqli,"SELECT * FROM contacts WHERE client_id = $client_id");
$sql_contacts = mysqli_query($mysqli,"SELECT * FROM contacts WHERE client_id = $client_id ORDER BY contact_name ASC");
while($row = mysqli_fetch_array($sql_contacts)){
$contact_id_select = $row['contact_id'];
$contact_name_select = $row['contact_name'];