Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started