Is it possible to declare multiple arrays in PHP in one line?
$userAnswers = array();
$questionIDs = array ();
$sqlAnswers = array();
$sqlAnswersQuery = array();
$correctAnswers = array();
Any cleaner ways of doing this?
NOTE: The contents of these arrays are all DIFFERENT. I don't think setting them equal to each other would work.