I keep on getting this errors and i cant seem to find a solution:
Warning: Trying to access array offset on value of type bool in /opt/lampp/htdocs/shop/app/models/category.class.php on line 87
<?php
public function get_one($id){
$id = (int)$id;
$DB = Database::newInstance();
$data = $DB->read("select * from categories where id = '$id' limit 1");
return $data[0];
}
?>
This is line 87
return $data[0];