In line 102 a
while (list($rack,) = each($racks)) {
is used and this leads to physical_view.php not running with PHP 8.
Instead of
while (list($rack,) = each($racks)) {
# In our convention, y=0 is close to the floor. (Easier to wire up)
krsort($racks[$rack]);
}
It should be better
foreach ($racks as $rack => $values) {
// In our convention, y=0 is close to the floor. (Easier to wire up)
krsort($racks[$rack]);
}
In line 102 a
while (list($rack,) = each($racks)) {is used and this leads to physical_view.php not running with PHP 8.
Instead of
It should be better