✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Mit ír ki az alábbi kód HTML-ben?
$users = [ ["name" => "Anna", "age" => 25], ["name" => "Béla", "age" => 30]];foreach ($users as $user) { echo "<p>{$user['name']} ({$user['age']})</p>";}