NIVEL 1 - B
Código PHP:
Ver original<?php
$pantallas = [....];
$showView = 0;
$showView = 1;
$_SESSION['name'] = $_GET['nombre'];
$showView = 2;
$pantallas[$showView] = str_replace('-NOMBRE-', $_SESSION['name'], $pantallas[$showView]); }
echo $pantallas[$showView];