I need to display different pages according to a value that comes from the URI, I made this code, it is not pointing out errors, but it also does not display the contents of h1.
<?php
require_once"cabecalho.php";
$plano = $_GET['plano'];
if($plano == 'parcial'){ ?>
<section class="plano-parcial">
<h1>Plano parcial detalhes</h1>
</section>
<?php } ?>