in my bootstrap.php I try to load a category with a special id. Its not quite working.
public function getCatFromDb($idCat){
/** @var \Doctrine\DBAL\Connection $connection */
$connection = $connection->get('dbal_connection');
$sql = 'SELECT * FROM s_categories WHERE id=$idCat';
$result = $connection->query($sql)->fetch();
var_dump($result);
return $result;
}
Can someone spot the mistake? Thanks in advance!