‘Mark’, ‘Age’ => 15, ‘Weight’ => 46), array(‘Name’ => ‘John’, ‘Age’ => 13, ‘Weight’ => 65), array(‘Name’ => ‘Tom’, ‘Age’ => 14, ‘Weight’ => 56) ); foreach ($students as $student) { echo $student[‘Name’] . ‘ ‘ . $student[‘Age’] . ‘ ‘ . $student[‘Weight’] . ‘
‘; } ?>