Undefined index: txtnum in C: \ xampp \ htdocs \ factor.php on line 2, can anyone help with this error?

0

follow the codes:

<html>
<head>
    <title>Fatoração</title>
</head>
<body>
    <form method="post" action="fator.php">
        Numero: <input type="text" name="txtnum"><br>
        <input type="submit" name="Calcular">
    </form>
</body>
</html>

<?php
    $num = $_POST["txtnum"];
    $variavel = $num;
    $fatorial = $variavel;

    while ($variavel > 1) {
        $fatorial = $fatorial*($variavel-1);
        $variavel--;
    }
    echo "Número fatorado: $fatorial";
?>
    
asked by anonymous 25.08.2017 / 17:50

0 answers