this may be a simple question but am struggling to understand how to solve it. I have a form which allows the user to select either \"custom\" or \"all\" staff\" to assign t
You need to give fetchAll a fetch style
$staff = $select->fetchAll(PDO::FETCH_NUM);
From this link