mysqliクエリの結果を配列に格納するコードがありますが、1つの列の結果のみを配列に格納することで、コードをもう少し高度なものにしたいと考えています。これが私のコードです:
// Create array of devices that match the current unit in array $unitsarray
$result = $mysqli->query("SELECT * FROM `department devices` WHERE unit LIKE $unit");
//Fetch all rows in result and store them in an array $rows
$rows = array();
while($row = $result->fetch_row()) {
$rows[] = $row;
}