How can I get a percentage of right answers if I have 2 arrays in PHP or javascript, preferably in PHP?
So, I have these two arrays and I want to compare a quiz result with the correct answers and get a percentage score:
$quiz_results = array( 'q1' => 'no',
'q2' => 'yes',
'q3' => 'no',
)
$answers = array( 1 => 'yes',
2 => 'no',
3 => 'yes'
)