mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54: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:
@@ -60,7 +60,7 @@
|
||||
$sql_companies_select = mysqli_query($mysqli,"SELECT * FROM companies ORDER BY company_name ASC");
|
||||
while($row = mysqli_fetch_array($sql_companies_select)){
|
||||
$company_id = $row['company_id'];
|
||||
$company_name = $row['company_name'];
|
||||
$company_name = htmlentities($row['company_name']);
|
||||
?>
|
||||
<option value="<?php echo $company_id; ?>"><?php echo $company_name; ?></option>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user