mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
Format output for the proper code syntax, this should fix many various issues with output formatting and page breakage
This commit is contained in:
@@ -77,7 +77,7 @@
|
||||
$sql_trips = mysqli_query($mysqli,"SELECT * FROM users ORDER BY user_name ASC");
|
||||
while($row = mysqli_fetch_array($sql_trips)){
|
||||
$user_id_select = $row['user_id'];
|
||||
$user_name_select = $row['user_name'];
|
||||
$user_name_select = htmlentities($row['user_name']);
|
||||
?>
|
||||
<option <?php if($trip_user_id == $user_id_select){ echo "selected"; } ?> value="<?php echo $user_id_select; ?>"><?php echo $user_name_select; ?></option>
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
$sql_clients = mysqli_query($mysqli,"SELECT * FROM clients WHERE company_id = $session_company_id ORDER BY client_name ASC");
|
||||
while($row = mysqli_fetch_array($sql_clients)){
|
||||
$client_id_select = $row['client_id'];
|
||||
$client_name_select = $row['client_name'];
|
||||
$client_name_select = htmlentities($row['client_name']);
|
||||
?>
|
||||
<option <?php if($client_id == $client_id_select) { echo "selected"; } ?> value="<?php echo $client_id_select; ?>"><?php echo $client_name_select; ?></option>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user