///
Sobre programação para a Internet na linguagem PHP (PHP5), considere o código da página web que segue.
<html>
<head><title>Cadastro ET</title></head>
<body>
<?php if (!isset ($_POST['btnCad']) || ($_POST['btnCad'] != 'Cadastrar')){ ?>
<h1>Cadastro ET</h1>
<form method="post" action="">
<table>
<tr>
<td>Nome:</td>
<td><input type='text' name='nome'/></td>
</tr>
<tr>
<td>Planeta:</td>
<td><input type='text' name='planeta'/></td>
</tr>
<tr>
<td colspan='2'>
<input type='submit' name='btnCad' value='Cadastrar'/>
</td>
</tr>
</table>
</form>
<?php } else { ?>
Nome: <?php echo $_POST['nome']; ?><br />
Planeta: <?php echo $_POST['planeta']; ?><br />
<?php } ?>
</body>
</html>Sobre o código dessa página web, assinale a afirmativa INCORRETA.