Question: Rewrite following PHP code using associative array(s) inside of a loop:

Rewrite following PHP code using associative array(s) inside of a loop:

$students = array("Alex", "Mary", "Cole");

$grades = array("50", "70", "90");

echo $students[0]." got". $grades[0]. " from the exam.
";

echo $students[1]." got". $grades[1]. " from the exam.
";

echo $students[2]." got". $grades[2]. " from the exam.
";

?>

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!