i'm doing this...
$priest = array(
"char_id" => array (),
"char_class" => array(),
"points" => array()
);
//some database calls insue, then pull variable from fetch_array
$class = $line["Char_Class"];
array_push($priest[1], $class );
var_dump($priest[1]);
I get the following error 🙁
Warning: First argument to array_push() needs to be an array in / on line 44